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

gmcdonald 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 931aa7137 Fix CI required checks (#3666)
931aa7137 is described below

commit 931aa7137be6321cce648b433028a7d2e803b753
Author: Robert Stupp <[email protected]>
AuthorDate: Wed Feb 4 10:12:11 2026 +0100

    Fix CI required checks (#3666)
---
 .asf.yaml                   | 4 +++-
 .github/workflows/ci-pr.yml | 4 +++-
 .github/workflows/ci.yml    | 3 +++
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 3a2806912..995988d68 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -53,7 +53,9 @@ github:
         # Contexts are the names of checks that must pass. This is the value
         # of the job's `name` property if it's present.
         contexts:
-          - "Required Checks"
+          # "CI/PR" is the name of the workflow _job_ (jobs.ci-pr.name in 
ci-pr.yml),
+          # "Required Checks" is the name of the workflow _job_ in ci.yml.
+          - "CI/PR / Required Checks"
 
   features:
     wiki: false
diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml
index f7a39a42c..c1e1a3659 100644
--- a/.github/workflows/ci-pr.yml
+++ b/.github/workflows/ci-pr.yml
@@ -30,5 +30,7 @@ concurrency:
 
 jobs:
   ci-pr:
-    name: PR#${{ github.event.number }} ${{ github.event.pull_request.title }}
+    # The 'name' MUST BE CONSTANT, as it becomes a part of the required_checks 
in .asf.yaml !!
+    # Do not rename this job, this is referenced in .asf.yaml!
+    name: CI/PR
     uses: ./.github/workflows/ci.yml
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2498dbbde..a67702d2f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -334,6 +334,8 @@ jobs:
         with:
           ref: "versioned-docs"
           path: site/content/releases
+        # Do not let this step fail when the versioned-docs branch does not 
exist, as on most forks
+        continue-on-error: true
       - name: Setup test environment
         uses: ./.github/actions/setup-test-env
       - name: Install docker-compose
@@ -369,6 +371,7 @@ jobs:
           cache-read-only: false
 
   required-checks:
+    # Do not rename this job, this is referenced in .asf.yaml!
     name: "Required Checks"
     needs:
       - build-checks

Reply via email to