27
loading...
This website collects cookies to deliver better user experience
.github/workflows
)Fact Sheet | |
---|---|
Author | mheap |
Contributors | 2 |
Stars | 6 |
Repo | https://github.com/mheap/automatic-approve-action |
Marketplace | https://github.com/marketplace/actions/automatic-approve |
pending
. This is to prevent bad actors abusing actions for things like crypto mining.token
input.github/workflows
to itaction_required
in the current repositorydangerous_files
liststatus_required
, are listed in the workflows
input and do not change any files in dangerous_files
.name: Automatic Approve
on:
schedule:
- cron: "*/5 * * * *"
jobs:
automatic-approve:
name: Automatic Approve
runs-on: ubuntu-latest
steps:
- name: Automatic Approve
uses: mheap/automatic-approve-action@v1
with:
token: ${{ secrets.PAT }}
workflows: "pr.yml,lint.yml"
dangerous_files: "build.js"