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

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


The following commit(s) were added to refs/heads/main by this push:
     new b6ab1b9  Disable commit signatures (#142)
b6ab1b9 is described below

commit b6ab1b9a7cdd37d1faabb7ac62f26193ac9b6a90
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Mon Dec 1 10:00:58 2025 +0100

    Disable commit signatures (#142)
---
 .asf.yaml | 29 ++++++++++++++++++++++++-----
 1 file changed, 24 insertions(+), 5 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 1644b0e..c473428 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -48,7 +48,15 @@ github:
     - coroutines
     - concurrency
 
-  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.
@@ -57,9 +65,20 @@ github:
     merge:   false
     rebase:  false
 
-  features:
-    issues: true
-
+  # 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