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 5182c43 commit 0668414Copy full SHA for 0668414
.github/workflows/version-updates.yml
@@ -0,0 +1,20 @@
1
+name: Version Update Auto Merge
2
+on: pull_request
3
+
4
+permissions:
5
+ contents: write
6
+ pull-requests: write
7
8
+jobs:
9
+ auto-merge:
10
+ runs-on: ubuntu-latest
11
+ if: ${{ github.actor == 'dependabot[bot]' }}
12
+ steps:
13
+ - run: gh pr review --approve "$PR_URL"
14
+ env:
15
+ PR_URL: ${{github.event.pull_request.html_url}}
16
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
17
+ - run: gh pr merge --auto --squash "$PR_URL"
18
19
20
0 commit comments