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.
2 parents 8d6e669 + a10bd2d commit 34392b1Copy full SHA for 34392b1
.github/workflows/auto-merge.yaml
@@ -0,0 +1,28 @@
1
+name: 🤖 Auto Merge
2
+
3
+on:
4
+ pull_request_review:
5
+ types: [submitted]
6
+ workflow_run:
7
+ workflows: ["♾️ Compatibility Check"]
8
+ types:
9
+ - completed
10
11
+permissions:
12
+ pull-requests: write
13
+ issues: write
14
+ repository-projects: write
15
16
+jobs:
17
+ auto-merge:
18
+ runs-on: ubuntu-latest
19
+ if: github.actor == 'dependabot[bot]'
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ with:
23
+ token: ${{ secrets.DEPENDABOT_PAT }}
24
25
+ - uses: ahmadnassri/action-dependabot-auto-merge@v2
26
27
+ github-token: ${{ secrets.DEPENDABOT_PAT }}
28
+ target: all
0 commit comments