From 82b4b76a515b5d591ab6e68e6a2518a4f19dcc8b Mon Sep 17 00:00:00 2001 From: The Apache Software Foundation Date: Fri, 15 May 2026 14:17:52 -0500 Subject: [PATCH] Set up default protection ruleset for default and release branches --- .asf.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .asf.yaml diff --git a/.asf.yaml b/.asf.yaml new file mode 100644 index 0000000..ab59476 --- /dev/null +++ b/.asf.yaml @@ -0,0 +1,14 @@ +github: + rulesets: + - name: "Default Branch Protection" + type: branch + branches: + includes: + - "~DEFAULT_BRANCH" + - "release/*" + - "rel/*" + excludes: [] + bypass_teams: + - root + restrict_deletion: true + restrict_force_push: true