This is an automated email from the ASF dual-hosted git repository.
davidarthur pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 806fa5bbb0b MINOR remove legacy branch protections from asf.yaml
(#19152)
806fa5bbb0b is described below
commit 806fa5bbb0b15fdcb77ebd26e0b505382477f5fe
Author: David Arthur <[email protected]>
AuthorDate: Mon Mar 10 10:53:55 2025 -0400
MINOR remove legacy branch protections from asf.yaml (#19152)
Infra has manually setup rulesets for trunk and our release branches
(INFRA-26603). We need to disable the legacy branch protections to avoid
interfering with the new rulesets.
Reviewers: Chia-Ping Tsai <[email protected]>
---
.asf.yaml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index 35b230d8e12..8fd1cf02076 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -46,12 +46,12 @@ github:
merge: false
rebase: false
+ # Disable legacy branch protections. We have manual rulesets which protect
trunk
+ # and our release branches. See INFRA-26603
protected_branches:
- trunk: {}
-
- # Disable force push on release branches
- 4.0: {}
- 3.9: {}
- 3.8: {}
- 3.7: {}
- 3.6: {}
+ trunk: ~
+ 4.0: ~
+ 3.9: ~
+ 3.8: ~
+ 3.7: ~
+ 3.6: ~