ci: include ESR branches in backport targets#26462
Open
f0ssel wants to merge 3 commits into
Open
Conversation
The backport workflow now targets the latest 3 release branches plus all active ESR (Extended Support Release) branches. ESR versions are defined in scripts/lib/esr_versions.sh, which is also sourced by the release calendar generator to keep the list in one place. Duplicates are removed automatically since it is typical for one of the latest 3 releases to also be an ESR.
Contributor
Documentation CheckUpdates Needed
Automated review via Coder Agents |
Docs preview📖 View docs preview for |
The link checker uses filter_mode: file, so editing CONTRIBUTING.md caused linkspector to check every link in the file and surface two pre-existing broken links: - The Nix environment link pointed to a nonexistent /nix directory. Point it at flake.nix, where the Nix environment is now defined. - reflectoring.io returns 503 to CI and browser clients, matching the existing list of sites that block runner IPs. Add it to the linkspector ignore patterns.
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.
The backport workflow now targets the latest 3 release branches plus all active ESR (Extended Support Release) branches, ensuring security and critical fixes reach ESR users.
ESR versions are extracted into
scripts/lib/esr_versions.shand sourced by both the backport workflow and the release calendar generator (scripts/update-release-calendar.sh), keeping the list in one place.Duplicates are removed automatically since it is typical for one of the latest 3 releases to also be an ESR.
Implementation notes
scripts/lib/esr_versions.shdefinesESR_VERSIONS=(29 34).github/workflows/backport.yaml: sources the shared file, appends any ESR branches not already in the top-3 list (with existence check)scripts/update-release-calendar.sh: sources the shared file instead of defining the array inline