mirror of
https://github.com/rust-unofficial/awesome-rust
synced 2024-11-10 06:14:13 +00:00
Cron jobs to auto-approve for running, and retest the list
This commit is contained in:
parent
e7b335d8dd
commit
57ab1146aa
2 changed files with 18 additions and 0 deletions
16
.github/workflows/approve.yml
vendored
Normal file
16
.github/workflows/approve.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: Automatic Approve
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
automatic-approve:
|
||||
name: Automatic Approve
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Automatic Approve
|
||||
uses: mheap/automatic-approve-action@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
workflows: "ci.yml"
|
||||
dangerous_files: "src/main.rs,Cargo.toml,Cargo.lock"
|
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
|
@ -5,6 +5,8 @@ on:
|
|||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
|
Loading…
Reference in a new issue