regenbogenkarte/.github/workflows/dependabot-auto-merge.yml

24 lines
693 B
YAML
Raw Normal View History

2023-12-02 11:32:41 +00:00
name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
2023-12-02 11:32:41 +00:00
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs (only minor & patch)
if: "steps.metadata.outputs.update-type != 'version-update:semver-major'"
2023-12-21 16:42:35 +00:00
run: gh pr merge --auto --squash "$PR_URL"
2023-12-02 11:32:41 +00:00
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}