|
@@ -7,9 +7,17 @@ permissions:
|
|
|
|
|
|
|
|
jobs:
|
|
jobs:
|
|
|
dependabot:
|
|
dependabot:
|
|
|
|
|
+ name: automerge
|
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'codama-idl/codama'
|
|
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'codama-idl/codama'
|
|
|
steps:
|
|
steps:
|
|
|
|
|
+ - name: Wait for other checks to succeed
|
|
|
|
|
+ uses: lewagon/wait-on-check-action@v1.3.4
|
|
|
|
|
+ with:
|
|
|
|
|
+ ref: ${{ github.ref }}
|
|
|
|
|
+ running-workflow-name: 'automerge'
|
|
|
|
|
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
+ wait-interval: 10
|
|
|
- name: Auto-approve the PR
|
|
- name: Auto-approve the PR
|
|
|
run: gh pr review --approve "$PR_URL"
|
|
run: gh pr review --approve "$PR_URL"
|
|
|
env:
|
|
env:
|