This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch feature/enforce-rtc in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git
commit 16a42d1361798df95beecb63844d5587b2f83b0c Author: Piotr P. Karwasz <[email protected]> AuthorDate: Tue Apr 15 11:30:43 2025 +0200 Enforce RTC This is an implementation of the [PMC vote in `dev@logging`](https://lists.apache.org/thread/8ffdw1zqrvwrsdr0ng0m2rgtdnpzg4hk). I didn't add any required checks, since: - Any test can fail because of a problem in `logging-log4j2`, not this repo. - I don't really know which checks should be added. --- .asf.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.asf.yaml b/.asf.yaml index 30722f4..d9c7f59 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -47,4 +47,10 @@ github: # Prevent force pushes to primary branches protected_branches: main: + # All commits must be signed required_signatures: true + # All reviews must be addressed before merging + required_conversation_resolution: true + # At least one positive review must be present + required_pull_request_reviews: + required_approving_review_count: 1
