This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new a67c0670a1 IGNITE-19122 Enable main branch protection (#1842)
a67c0670a1 is described below
commit a67c0670a172259c42c4512a5a7de247f9a45de5
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Tue Mar 28 11:24:21 2023 +0300
IGNITE-19122 Enable main branch protection (#1842)
* Disallow force pushes.
* Require linear history (no merge commits).
* Require review approval.
More info:
https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features
---
.asf.yaml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/.asf.yaml b/.asf.yaml
index d085fb91fe..a0cd41ec1e 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -38,6 +38,17 @@ github:
squash: true
merge: false
rebase: false
+ protected_branches:
+ main:
+ allow_force_pushes: false
+ required_linear_history: true
+ required_signatures: false
+
+ required_pull_request_reviews:
+ dismiss_stale_reviews: false
+ require_code_owner_reviews: false
+ required_approving_review_count: 1
+
notifications:
commits: [email protected]
issues: [email protected]