This is an automated email from the ASF dual-hosted git repository.
casionone pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/linkis.git
The following commit(s) were added to refs/heads/master by this push:
new d3fda0b7dc #AI COMMIT# Temporarily disable master branch protection
for security cleanup (#5443)
d3fda0b7dc is described below
commit d3fda0b7dc8698b7943275e2226c8942f7572111
Author: aiceflower <[email protected]>
AuthorDate: Tue Jun 16 17:04:32 2026 +0800
#AI COMMIT# Temporarily disable master branch protection for security
cleanup (#5443)
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 08ec821f75..28dda241c2 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: [email protected]
issues: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]