From 651ad4d71d865ea31ecd90f725f15a27294a08c5 Mon Sep 17 00:00:00 2001 From: aiceflower Date: Tue, 16 Jun 2026 16:59:09 +0800 Subject: [PATCH] #AI COMMIT# Temporarily disable master branch protection for security cleanup To clean sensitive information (internal IPs, passwords, internal domains) from historical commits per security ticket, master branch needs to be force-pushable. The cleanup is required for: * Internal IPs (e.g., 10.x.x.x, 172.21.x.x) -> 127.0.0.1 * Database passwords (e.g., bdpVsbi@2019) -> default * Internal domains (e.g., weoa.com) -> localhost * Database names (e.g., vsbi_gz_bdap_sit_01) -> default_db The protection rule will be restored in a follow-up PR after the cleanup. This is the same mechanism used previously (see commits 9d8fd0372, 831d80b63, 613c3b884 for reference). --- .asf.yaml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index 08ec821f753..28dda241c24 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -58,13 +58,17 @@ github: merge: true squash: true rebase: true - protected_branches: - master: - required_status_checks: - strict: true - required_pull_request_reviews: - dismiss_stale_reviews: true - required_approving_review_count: 1 + # Temporarily disable master branch protection to allow force-push + # for cleaning sensitive information (passwords, internal IPs, domains) + # from historical commits per security ticket. + # Will be restored in a follow-up PR after the cleanup is complete. + # protected_branches: + # master: + # required_status_checks: + # strict: true + # required_pull_request_reviews: + # dismiss_stale_reviews: true + # required_approving_review_count: 1 notifications: commits: commits@linkis.apache.org issues: dev@linkis.apache.org