We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e72117 commit 223eddfCopy full SHA for 223eddf
.github/workflows/auto-approve.yml
@@ -0,0 +1,18 @@
1
+name: auto-approve
2
+on: pull_request
3
+
4
+permissions: read-all
5
6
+jobs:
7
+ auto-approve:
8
+ if: github.actor == 'dependabot[bot]'
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ pull-requests: write
12
13
+ steps:
14
+ - name: Approve PR
15
+ run: gh pr review --approve ${{ github.event.pull_request.html_url }}
16
+ continue-on-error: true
17
+ env:
18
+ GH_TOKEN: ${{ github.token }}
0 commit comments