This is an automated email from the ASF dual-hosted git repository.

kaxil pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 74c59481b64 Disable branch protection on v3-3-stable (#68993)
74c59481b64 is described below

commit 74c59481b644dbf153fa6374fe9e15720405b273
Author: Kaxil Naik <[email protected]>
AuthorDate: Thu Jun 25 17:18:14 2026 +0100

    Disable branch protection on v3-3-stable (#68993)
    
    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).
---
 .asf.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
index 51cf7289e34..3994d7a1e35 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -115,6 +115,11 @@ github:
           - "providers-fab/v*"
           - "airflow-ctl/v*-stable"
           - "chart/v*-stable"
+        excludes:
+          # Temporarily exclude `v3-3-stable` from branch protection. It is 
matched by the
+          # `v*-stable` include above; exclusions take precedence, so this 
leaves the branch
+          # unprotected while the other `v*-stable` branches stay protected.
+          - "v3-3-stable"
       required_pull_request_reviews:
         required_approving_review_count: 1
       required_linear_history: true

Reply via email to