This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/master by this push:
new f5d0b94a Add branch protection rules in .asf.yaml (#322)
f5d0b94a is described below
commit f5d0b94af45f910417e50a6b5f286e987ff59761
Author: Muhammad Taha Naveed <[email protected]>
AuthorDate: Sat May 11 04:36:16 2024 +0500
Add branch protection rules in .asf.yaml (#322)
- All the PRs sent to master and new-web branch
will now require atleast 1 approving review before
merge.
---
.asf.yaml | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/.asf.yaml b/.asf.yaml
index 044a2f8e..7103a377 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -3,4 +3,12 @@ github:
enabled_merge_buttons:
squash: true
merge: false
- rebase: true
\ No newline at end of file
+ rebase: true
+ protected_branches:
+ master:
+ required_pull_request_reviews:
+ required_approving_review_count: 1
+
+ new-web:
+ required_pull_request_reviews:
+ required_approving_review_count: 1
\ No newline at end of file