Skip to content

Commit c54d9e9

Browse files
authored
👷 Add workflow
1 parent aa5c678 commit c54d9e9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/dependabot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Dependabot Automerge PR
2+
on:
3+
pull_request:
4+
types:
5+
- labeled
6+
- unlabeled
7+
- synchronize
8+
- opened
9+
- edited
10+
- ready_for_review
11+
- reopened
12+
- unlocked
13+
branches:
14+
- master
15+
check_suite:
16+
types:
17+
- completed
18+
status: {}
19+
20+
jobs:
21+
automerge:
22+
name: Dependabot Automerge
23+
runs-on: ubuntu-latest
24+
if: github.actor == 'dependabot[bot]'
25+
env:
26+
GITHUB_TOKEN: ${{ github.token }}
27+
MERGE_LABELS: "dependencies"
28+
MERGE_COMMIT_MESSAGE: "🔀 Automerge pull request #${{ github.event.pull_request.number }}"
29+
steps:
30+
- name: Automerge
31+
uses: pascalgn/automerge-action@v0.9.0

0 commit comments

Comments
 (0)