Approve & squash merge dependabot prs

See https://dev.to/lkurzyniec/github-auto-merge-dependabot-prs-26dj
This commit is contained in:
Jan Raasch 2024-01-23 11:07:09 +01:00
parent fe522cefe3
commit 4ce692eb8c

View File

@ -24,13 +24,13 @@ jobs:
- name: Build local ./exampleSite
run: hugo --minify --gc --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://janraasch.github.io/hugo-bearblog/
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: build
path: ./public
dependabot:
name: Dependabot Auto-Merge
needs: build
@ -44,7 +44,9 @@ jobs:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Enable auto-merge for Dependabot PRs
if: contains(fromJSON('["version-update:semver-patch", "version-update:semver-minor"]'), steps.dependabot-metadata.outputs.update-type)
run: gh pr merge --auto --merge "$PR_URL"
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}