We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4bc5cd commit 6ea530bCopy full SHA for 6ea530b
1 file changed
.github/workflows/dependabotMerge.yml
@@ -0,0 +1,25 @@
1
+name: Merge pull request created by Dependabot
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ mergePullRequestByDependabot:
10
+ if: github.actor == 'dependabot'
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: write
14
+ pull-requests: write
15
+ steps:
16
+ - name: Comment to merge Dependabot PR
17
+ uses: actions/github-script@v8
18
+ with:
19
+ script: |
20
+ github.rest.issues.createComment({
21
+ issue_number: context.issue.number,
22
+ owner: context.repo.owner,
23
+ repo: context.repo.repo,
24
+ body: @dependabot merge
25
+ })
0 commit comments