release: rename changelog branches to release-changelog/${version}#217
Merged
HowardBraham merged 1 commit intomainfrom Feb 13, 2026
Merged
release: rename changelog branches to release-changelog/${version}#217HowardBraham merged 1 commit intomainfrom
HowardBraham merged 1 commit intomainfrom
Conversation
github-merge-queue bot
pushed a commit
to MetaMask/metamask-extension
that referenced
this pull request
Feb 16, 2026
## **Description** Fixes three issues we just discovered during the most recent release cycle: 1. On a changelog branch, like `release/13.19.0-Changelog`, the workflow ran twice, on both `push` and `pull_request` - This was changed to be fixed in MetaMask/github-tools#217 - Then I simplified `.github/workflows/update-release-changelog.yml` 2. The release branch was not running job `publish-prerelease` because `needs-benchmarks == 'false'` and the benchmarks were prereqs 3. `prep-e2e` had the gate `if: ${{ (github.head_ref || github.ref_name) != 'stable' }}` on the whole job, which prevented it from generating `test-runs-for-splitting`. Changed to gating just the diff steps. ## **Changelog** CHANGELOG entry: null <!--## **Related issues** ## **Manual testing steps** ## **Screenshots/Recordings** ## **Pre-merge author checklist** ## **Pre-merge reviewer checklist** [skip-e2e]--> <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Workflow-only changes to CI/release automation; main risk is accidentally skipping/triggering release jobs due to updated job conditions and branch filters. > > **Overview** > Fixes release-cycle GitHub Actions behavior. > > `publish-prerelease` in `main.yml` is now explicitly gated to run when releases are enabled and **not cancelled**, requiring all non-benchmark prerequisite jobs to be `success`/`skipped` so benchmarks no longer block prereleases. > > `prep-e2e.yml` now runs on `stable`, but skips the diff/artifact steps there so it still produces `test-runs-for-splitting`. `publish-prerelease.yml` makes downloading `page-load-benchmark-results` non-blocking (`continue-on-error`). `update-release-changelog.yml` is simplified by narrowing the push branch filter to semver-like `release/x.y.z` and removing the extra branch-validation job. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 95b4e36. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
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.
Rename
release/${version}-Changelogtorelease-changelog/${version}Note
Low Risk
Branch-name and template-formatting changes limited to GitHub release automation scripts; low blast radius but could affect automation if any external tooling still expects the old changelog branch naming.
Overview
Updates release automation to use the new changelog branch naming convention
release-changelog/<version>instead ofrelease/<version>-Changelog, including updated detection logic (with a-fallbackvariant) inupdate-release-changelog.sh.Also aligns the release PR template formatting (markdown list/whitespace) and updates the comprehensive test script to use the new changelog branch name.
Written by Cursor Bugbot for commit bcf4d89. This will update automatically on new commits. Configure here.