Uh oh!
There was an error while loading. Please reload this page.
Disable branch protection on v3-3-stable - #68993
Merged
kaxil merged 1 commit intoJun 25, 2026
Merged
Conversation
Cut of 3.3.0rc1 needs to push the release commit/tag to v3-3-stable, which the stable-branch ruleset blocks via the v*-stable include. Add v3-3-stable to the ruleset's branches.excludes so the branch is left unprotected for now, while the other v*-stable branches stay protected (ruleset exclusions take precedence over includes).
kaxilforce-pushed
the
disable-branch-protection-v3-2-stable
branch
from
June 25, 2026 16:15
5c1f91c to
aea9dc1Comparevatsrahul1001
approved these changes
Jun 25, 2026
Uh oh!
There was an error while loading. Please reload this page.
1 task
ephraimbuddy pushed a commit
that referenced
this pull request
Jun 29, 2026
karenbraganz pushed a commit
to karenbraganz/airflow
that referenced
this pull request
Jun 30, 2026
Cut of 3.3.0rc1 needs to push the release commit/tag to v3-3-stable, which the stable-branch ruleset blocks via the v*-stable include. Add v3-3-stable to the ruleset's branches.excludes so the branch is left unprotected for now, while the other v*-stable branches stay protected (ruleset exclusions take precedence over includes).
karenbraganz pushed a commit
to karenbraganz/airflow
that referenced
this pull request
Jun 30, 2026
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 freeto 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
Temporarily removes branch protection from
v3-3-stableso the3.3.0rc1release can be cut.The
v3-3-stablebranch is covered by the "Branch protection" ruleset because it matches thev*-stablepattern inbranches.includes. This adds it to a newbranches.excludeslist so the branch is left unprotected for now.Why excludes rather than editing the include glob
Narrowing or removing
v*-stablewould also un-protect every other stable branch (v3-2-stable,v3-1-stable, etc.). GitHub ruleset exclusions take precedence over inclusions, so an explicitexcludesentry drops protection on justv3-3-stableand leaves the rest intact.Re-enabling
Remove the
v3-3-stableentry frombranches.excludes(or drop the whole block) to restore protection once the release is out.Note
.asf.yamlruleset settings are applied from the default branch only, so this takes effect once merged tomain.