Skip to content

Commit 34392b1

Browse files
committed
Merge branch 'main' into dev
2 parents 8d6e669 + a10bd2d commit 34392b1

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/auto-merge.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
27+
github-token: ${{ secrets.DEPENDABOT_PAT }}
28+
target: all

0 commit comments

Comments
 (0)