Skip to content

Commit

Permalink
feat: dependabot auto-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Nov 1, 2024
1 parent 22d30a3 commit be1dd73
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,21 @@ jobs:
- name: Test
run: go test ./...
working-directory: ${{ inputs.working-directory }}
dependabot:
needs: [test, govulncheck]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- id: metadata
uses: dependabot/fetch-metadata@dbb049abf0d677abbd7f7eee0375145b417fdd34 # v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- run: |
gh pr review --approve "$PR_URL"
gh pr merge --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.gh_pat}}

0 comments on commit be1dd73

Please sign in to comment.