From 1e889ce7157281c2a838c738a99527fb1468f7e9 Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Fri, 17 Jul 2026 17:05:44 -0700 Subject: [PATCH] ci: auto-merge dependabot major version bumps Drop the semver-major exclusion from the Dependabot auto-merge gate so that major version PRs are also auto-approved and merged once CI passes, matching the workflow already in place for minor and patch updates. --- .github/workflows/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index 5491162..60af793 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -17,7 +17,6 @@ jobs: uses: dependabot/fetch-metadata@v2 - name: Enable auto-merge for Dependabot PRs - if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }} run: gh pr merge --auto --merge "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }}