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

vy pushed a commit to branch commitSigs
in repository https://gitbox.apache.org/repos/asf/logging-log4j-jmx-gui.git

commit f4c4d0c7606c464d00a327f090a68391015cc73e
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Fri Nov 28 15:23:12 2025 +0100

    Disable commit signatures
---
 .asf.yaml | 27 ++++++++++++++++++++++++---
 1 file changed, 24 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 74490f3..06d7091 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -43,7 +43,15 @@ github:
     - log4j2
     - logging
 
-  del_branch_on_merge: true
+  # Pull Request settings:
+  # https://github.com/apache/infrastructure-asfyaml#pull-request-settings
+  pull_requests:
+    # allow auto-merge
+    allow_auto_merge: true
+    # enable updating head branches of pull requests
+    allow_update_branch: true
+    # auto-delete head branches after being merged
+    del_branch_on_merge: true
 
   # Enforce squashing while merging PRs.
   # Otherwise, the git log gets polluted severely.
@@ -55,7 +63,20 @@ github:
   features:
     issues: true
 
-  # Prevent force pushes to primary branches
+  # Enforce Review-then-Commit
   protected_branches:
     main:
-      required_signatures: true
+      # All reviews must be addressed before merging
+      required_conversation_resolution: true
+      # Require checks to pass before merging
+      required_status_checks:
+        checks:
+          # The GitHub Actions app: 15368
+          - app_id: 15368
+            context: "build / build (ubuntu-latest)"
+          # The GitHub Advanced Security app: 57789
+          - app_id: 57789
+            context: "CodeQL"
+      # At least one positive review must be present
+      required_pull_request_reviews:
+        required_approving_review_count: 1

Reply via email to