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

davidarthur pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 835f256f701 MINOR: Don't run update-test-catalog on PRs (#17640)
835f256f701 is described below

commit 835f256f70147ac03ea9c348c2810e0b0c4fedd5
Author: David Arthur <[email protected]>
AuthorDate: Wed Oct 30 16:57:49 2024 -0400

    MINOR: Don't run update-test-catalog on PRs (#17640)
    
    Reviewers: Chia-Ping Tsai <[email protected]>
---
 .github/workflows/build.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e7d0736ed6b..b113a37c729 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -193,8 +193,9 @@ jobs:
           if-no-files-found: ignore
 
   update-test-catalog:
+    name: Update Test Catalog
     needs: test
-    if: always()
+    if: ${{ always() && !inputs.is-public-fork }}
     runs-on: ubuntu-latest
     permissions:
       contents: write
@@ -212,7 +213,7 @@ jobs:
         with:
           name: test-catalog
           path: test-catalog
-      - name: Update Test Catalog
+      - name: Push Test Catalog
         # Git user.name and user.email come from 
https://github.com/actions/checkout?tab=readme-ov-file#push-a-commit-using-the-built-in-token
         run: |
           pwd

Reply via email to