Merge pull request #1098 from palfrey/crons

Cron jobs to auto-approve for running, and retest the list
pull/1100/head
Lukáš Hozda [magnusi] 3 years ago committed by GitHub
commit 919df744fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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"

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

Loading…
Cancel
Save