From 4c51868a6701c4b31b86c634a0d41abcedabf649 Mon Sep 17 00:00:00 2001 From: eric-wang-1990 Date: Fri, 24 Jul 2026 00:05:07 -0700 Subject: [PATCH] ci: fix dead driver-test workflow link in dispatch comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "Integration tests triggered" PR comment (and two header comments) linked to python-proxy-tests.yml, which does not exist (404) — the receiver file is databricks-sql-python-proxy-tests.yml. Point to the correct workflow and note that the authoritative results are the "Python Proxy Tests / thrift" and "Python Proxy Tests / kernel" checks posted back on the PR. Co-authored-by: Isaac --- .github/workflows/trigger-integration-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/trigger-integration-tests.yml b/.github/workflows/trigger-integration-tests.yml index 9954d1539..5fdd4f916 100644 --- a/.github/workflows/trigger-integration-tests.yml +++ b/.github/workflows/trigger-integration-tests.yml @@ -18,14 +18,14 @@ name: Trigger Integration Tests # gate. Only PRs whose tests dispatch (or auto-pass when no driver # files changed) can proceed to `main`. # -# Check-run names: databricks-driver-test's python-proxy-tests.yml is -# a `mode: [thrift, kernel]` matrix that posts two named checks per +# Check-run names: databricks-driver-test's databricks-sql-python-proxy-tests.yml +# is a `mode: [thrift, kernel]` matrix that posts two named checks per # run — `Python Proxy Tests / thrift` and `Python Proxy Tests / kernel`. # Every synthetic-success / auto-pass / dispatch-failure step below # posts both names so the matrix legs always have a matching baseline # check on the PR. The list of modes lives in the `MODES` constant # at the top of each script block; keep it in sync with the matrix -# axis in databricks-driver-test/.github/workflows/python-proxy-tests.yml. +# axis in databricks-driver-test/.github/workflows/databricks-sql-python-proxy-tests.yml. # # Required external setup (outside this workflow): # @@ -321,7 +321,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, - body: 'Integration tests triggered. [View workflow run](https://github.com/databricks/databricks-driver-test/actions/workflows/python-proxy-tests.yml).' + body: 'Integration tests triggered. [View workflow runs](https://github.com/databricks/databricks-driver-test/actions/workflows/databricks-sql-python-proxy-tests.yml). Results post back here as the "Python Proxy Tests / thrift" and "Python Proxy Tests / kernel" checks.' }); # =============================================================================