Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/dependabot_automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
id: metadata
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
- name: Enable auto-merge
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
# Major bumps are held for manual review, except for GitHub Actions, whose
# majors are routine pin moves that the workflow linters and CI already gate.
if: >-
steps.metadata.outputs.update-type != 'version-update:semver-major'
|| steps.metadata.outputs.package-ecosystem == 'github_actions'
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
PR_URL: ${{ github.event.pull_request.html_url }}
Expand Down
Loading