From 7a035654c969bc911ca02c69b3b7e963a4861607 Mon Sep 17 00:00:00 2001 From: "gandalf-the-greybeard[bot]" Date: Mon, 9 Mar 2026 19:22:10 +0000 Subject: [PATCH] feat: auto-merge and cleanup release version bump PRs The release PR is just a version bump + checksum update. Enable auto-merge with squash and delete the release branch after merge to prevent branch accumulation. --- .github/workflows/plugin-release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/plugin-release.yaml b/.github/workflows/plugin-release.yaml index c507de6..82b2484 100644 --- a/.github/workflows/plugin-release.yaml +++ b/.github/workflows/plugin-release.yaml @@ -148,5 +148,6 @@ jobs: --body "Automated version bump and checksum update for v${VERSION}." \ --base main \ --head "release/v${VERSION}" + gh pr merge "release/v${VERSION}" --auto --squash --delete-branch env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}