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 b2b5ddb commit f53fea6Copy full SHA for f53fea6
.github/workflows/dependabot-auto-merge.yml
@@ -10,6 +10,11 @@ jobs:
10
runs-on: ubuntu-latest
11
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'codama-idl/codama'
12
steps:
13
+ - name: Auto-approve the PR
14
+ run: gh pr review --approve "$PR_URL"
15
+ env:
16
+ PR_URL: ${{ github.event.pull_request.html_url }}
17
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
- name: Enable auto-merge
19
run: gh pr merge --auto --squash "$PR_URL"
20
env:
0 commit comments