From f19a04b4b583a8752993053f949f71a7cca09c5e Mon Sep 17 00:00:00 2001 From: Ryan Cragun Date: Tue, 13 Feb 2024 14:44:18 -0700 Subject: [PATCH] build: don't build artifacts on UI only changes (#25389) Signed-off-by: Ryan Cragun --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd25492f56..1747163473 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -196,12 +196,10 @@ jobs: # # Trigger the setup workflow if any of the following conditions are true: # # * The workflow was triggered by on schedule to test building all artifacts. - # * The build/all label is present on a pull request or push. - # * The UI was changed. # * The Go app was changed. + # * The build/all label is present on a pull request or push. if: | needs.setup.outputs.workflow-trigger == 'schedule' || - needs.setup.outputs.ui-changed == 'true' || needs.setup.outputs.app-changed == 'true' || contains(fromJSON(needs.setup.outputs.labels), 'build/all') needs: