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

snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 99e7e692 CI: Make all PR workflow jobs required (#335)
99e7e692 is described below

commit 99e7e692d3e6d27edc7064dbec0503860705b024
Author: Robert Stupp <[email protected]>
AuthorDate: Wed Oct 2 18:57:17 2024 +0200

    CI: Make all PR workflow jobs required (#335)
    
    All current PR workflow jobs become a strict requirement (must pass) before 
a PR can be merged.
---
 .asf.yaml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
index cd7b8d85..4ee05617 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -42,6 +42,16 @@ github:
 
       required_linear_history: true
 
+      required_status_checks:
+        # strict means "Require branches to be up to date before merging".
+        strict: true
+        # contexts are the names of checks that must pass
+        contexts:
+          - markdown-link-check
+          - build
+          - regtest
+          - site
+
   features:
     wiki: false
     issues: true

Reply via email to