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-scala.git
The following commit(s) were added to refs/heads/main by this push:
new afca660 Disable commit signatures (#95)
afca660 is described below
commit afca6602e2da154dfd6efc6834d50bf4477e39d5
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Mon Dec 1 10:08:48 2025 +0100
Disable commit signatures (#95)
Co-authored-by: Piotr P. Karwasz <[email protected]>
---
.asf.yaml | 25 +++++++++++++++++++++++--
pom.xml | 2 +-
2 files changed, 24 insertions(+), 3 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index 3fa0b5d..69af55c 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -46,7 +46,15 @@ github:
- logger
- scala
- 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.
@@ -60,4 +68,17 @@ github:
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
diff --git a/pom.xml b/pom.xml
index 5266c58..3241e69 100644
--- a/pom.xml
+++ b/pom.xml
@@ -160,7 +160,7 @@
<!-- dependency version -->
<junit.version>4.13.2</junit.version>
- <log4j.version>2.24.3</log4j.version>
+ <log4j.version>2.25.2</log4j.version>
<mockito.version>4.11.0</mockito.version>
<scalatest.version>3.2.10</scalatest.version>
<scalatestplus.version>3.2.10.0</scalatestplus.version>