Merge pull request #1028 from palfrey/auto-approve

Automatically approve new PRs for running Github test actions
master
Jesper Håkansson 4 years ago committed by GitHub
commit 109b82fc39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      .github/workflows/approve.yml

@ -0,0 +1,15 @@
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.1.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
workflows: "test.yml"
Loading…
Cancel
Save