You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/11/01 16:59:07 UTC

[airflow] branch master updated: Require atleast 1 approving reviews for PRs (#12020)

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

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 489b158  Require atleast 1 approving reviews for PRs (#12020)
489b158 is described below

commit 489b15875df0d02c4758f38bf07a19c8ace99732
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sun Nov 1 16:58:29 2020 +0000

    Require atleast 1 approving reviews for PRs (#12020)
    
    Looks like we can control this setting via .asf.yaml : https://cwiki.apache.org/confluence/display/INFRA/git+-+.asf.yaml+features#git.asf.yamlfeatures-BranchProtection
---
 .asf.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
index 16d7a0e..bf4b478 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -39,3 +39,8 @@ github:
     squash: true
     merge: false
     rebase: false
+
+  protected_branches:
+    master:
+      required_pull_request_reviews:
+        required_approving_review_count: 1