We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5079fab commit 761eda1Copy full SHA for 761eda1
.github/workflows/auto_merge.yml
@@ -1,13 +1,15 @@
1
-name: auto-merge
+name: 'Merge Dependencies'
2
3
-on:
4
- pull_request:
+on: [pull_request_target]
5
6
jobs:
7
auto-merge:
8
runs-on: ubuntu-latest
+ if: github.actor == 'dependabot[bot]'
9
steps:
10
- - uses: actions/checkout@v2
11
- - uses: ahmadnassri/action-dependabot-auto-merge@v2
+ - name: 'Checkout repository'
+ uses: actions/checkout@v2.3.4
12
+ - name: 'Automerge dependency updates from Dependabot'
13
+ uses: ahmadnassri/action-dependabot-auto-merge@v2.4.0
14
with:
15
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE }}
0 commit comments