Skip to content

Commit 0d90c63

Browse files
committed
added dep auto merge workflow
1 parent 51687c5 commit 0d90c63

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/dep-auto-merge.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: 🤖 dep auto merge
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- dev
7+
workflow_dispatch:
8+
9+
permissions:
10+
pull-requests: write
11+
issues: write
12+
repository-projects: write
13+
14+
jobs:
15+
automerge:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
with:
20+
token: ${{ secrets.DEPENDABOT_PAT }}
21+
22+
- uses: ahmadnassri/action-dependabot-auto-merge@v2
23+
with:
24+
github-token: ${{ secrets.DEPENDABOT_PAT }}
25+
target: all

0 commit comments

Comments
 (0)