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 cad721a commit beae8f8Copy full SHA for beae8f8
.github/workflows/automerge.yml
@@ -0,0 +1,27 @@
1
+name: Automerge
2
+
3
+on:
4
+ check_suite:
5
+ types:
6
+ - completed
7
8
+jobs:
9
+ automerge:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Automerge Dev Dependency Updates
13
+ uses: ridedott/merge-me-action@v2
14
+ if: |
15
+ github.actor == 'dependabot[bot]' &&
16
+ github.event_name == 'pull_request' &&
17
+ startsWith(github.event.pull_request.title, 'refactor(deps-dev):')
18
+ with:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ - name: Automerge Dependency Updates
21
22
23
24
25
+ startsWith(github.event.pull_request.title, 'fix(deps):')
26
27
0 commit comments