From 566ca01f47395eba64e42e492b2859a9632a8571 Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 13 Feb 2026 22:52:53 -0800 Subject: [PATCH] added job parameter to only run action if scheduled or auto run if on repository apache/texera --- .github/workflows/build-and-push-images.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-and-push-images.yml b/.github/workflows/build-and-push-images.yml index c7fa0f9d04d..fd2c2c74a70 100644 --- a/.github/workflows/build-and-push-images.yml +++ b/.github/workflows/build-and-push-images.yml @@ -69,6 +69,7 @@ jobs: # Step 0: Set runtime parameters (handles both manual and scheduled runs) set-parameters: runs-on: ubuntu-latest + if: github.event_name != 'schedule' || github.repository == 'apache/texera' outputs: branch: ${{ steps.set-params.outputs.branch }} image_tag: ${{ steps.set-params.outputs.image_tag }}