This is an automated email from the ASF dual-hosted git repository.
yiconghuang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git
The following commit(s) were added to refs/heads/main by this push:
new 870a9e045c chore: add test-ci branch protection rules (#3937)
870a9e045c is described below
commit 870a9e045c7e7079106e0cf6b81f9b718f5c6f0a
Author: Yicong Huang <[email protected]>
AuthorDate: Sat Oct 18 17:22:28 2025 -0700
chore: add test-ci branch protection rules (#3937)
### What changes were proposed in this PR?
This PR is the initial setup for testing #3934. We create a new branch
`test-ci` and add the branch protection rules against `test-ci` for
testing purposes.
The rules names are exact string matches from Github Actions.
### Any related issues, documentation, discussions?
related to #3934
### How was this PR tested?
N/A. It should not affect any other branches. We are manually testing.
### Was this PR authored or co-authored using generative AI tooling?
No.
---
.asf.yaml | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/.asf.yaml b/.asf.yaml
index f8028b19a8..07f0403123 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -72,6 +72,29 @@ github:
required_approving_review_count: 1
required_linear_history: true
+ test-ci:
+ 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:
+ - gui (ubuntu-latest, 18)
+ - gui (windows-latest, 18)
+ - gui (macos-latest, 18)
+ - core (ubuntu-22.04, 11)
+ - python_udf (ubuntu-latest, 3.9)
+ - python_udf (ubuntu-latest, 3.10)
+ - python_udf (ubuntu-latest, 3.11)
+ - python_udf (ubuntu-latest, 3.12)
+ - Check License Headers
+ - Validate PR title
+
+ required_pull_request_reviews:
+ dismiss_stale_reviews: false
+ require_code_owner_reviews: false
+ required_approving_review_count: 1
+ required_linear_history: true
+
notifications:
commits: [email protected]
issues: [email protected]