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 5052e91 commit 8242982Copy full SHA for 8242982
.github/workflows/pr-auto-approve.yaml
@@ -0,0 +1,16 @@
1
+name: Auto First Approval for Bot PRs
2
+on: pull_request
3
+
4
+jobs:
5
+ auto-first-approve:
6
+ runs-on: ubuntu-latest
7
+ permissions:
8
+ pull-requests: write
9
+ contents: read
10
+ if: github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]'
11
+ steps:
12
+ - name: Provide first approval
13
+ uses: hmarr/auto-approve-action@v4
14
+ with:
15
+ github-token: ${{ secrets.GITHUB_TOKEN }}
16
+ review-message: "Renovate and Dependabot PRs are automatically approved. Still requires human review."
0 commit comments