chore: disable broken auto-bump workflow#414
Merged
milla-jovovich merged 1 commit intomainfrom Apr 9, 2026
Merged
Conversation
bump-plugin-version.yml has been failing on every merge to main since today's security + plugin-packaging work, because it tries to push directly to main and branch protection blocks it. It also conflicts with the manual version-management pattern we're currently using (manual bumps in PRs like #409 for 3.1.0). Renaming to .yml.disabled so GitHub Actions skips it. If we want auto-bumps later, the workflow needs to open a PR instead of pushing directly, and coordinate with manual version bumps.
bensig
approved these changes
Apr 9, 2026
phobicdotno
pushed a commit
to phobicdotno/mempalace-gpu
that referenced
this pull request
Apr 10, 2026
bump-plugin-version.yml has been failing on every merge to main since today's security + plugin-packaging work, because it tries to push directly to main and branch protection blocks it. It also conflicts with the manual version-management pattern we're currently using (manual bumps in PRs like MemPalace#409 for 3.1.0). Renaming to .yml.disabled so GitHub Actions skips it. If we want auto-bumps later, the workflow needs to open a PR instead of pushing directly, and coordinate with manual version bumps. Co-authored-by: milla-jovovich <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
bump-plugin-version.ymlhas been failing on every merge tomainsince today's security + plugin-packaging work — 5 runs in a row, starting with #387's merge at 16:13Z. All failing withprotected branch hook declined.Root cause
The workflow runs on every push to
main, auto-bumps the patch version (3.1.0 → 3.1.1), updates 5 files, then tries togit pushdirectly tomain. Branch protection (1 approval + CI required, enforce_admins=true) blocks direct pushes, so every run fails at the final step.It also conflicts with the manual version-management pattern we're actually using: Ben bumped
3.0.0 → 3.0.14by hand across PRs, and #409 bumped to3.1.0explicitly. If the auto-bump worked, it would silently push3.1.1on the next merge and drift the version away from our intentional releases.Fix
Rename
bump-plugin-version.yml→bump-plugin-version.yml.disabled. GitHub Actions skips anything that doesn't end in.ymlor.yaml, so this is a reversible, zero-risk disable.If we want to revive it later
The workflow would need to:
That's a larger rewrite and not worth doing until we decide whether auto-patch-bumps actually fit our release rhythm.
Test plan
Bump Versionworkflow run