Cron jobs to auto-approve for running, and retest the list

This commit is contained in:
Tom Parker-Shemilt 2021-06-13 15:51:37 +01:00
parent e7b335d8dd
commit 57ab1146aa
2 changed files with 18 additions and 0 deletions

16
.github/workflows/approve.yml vendored Normal file
View 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"

View file

@ -5,6 +5,8 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 0 * * *'
env:
CARGO_TERM_COLOR: always