Skip to content

Commit 3fc12c6

Browse files
authored
fix(ci): Fix incorrect changed_any_code check in job_build (#13353)
1 parent fd49d0b commit 3fc12c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-20.04
128128
timeout-minutes: 15
129129
if: |
130-
(needs.job_get_metadata.outputs.changed_any_code) &&
130+
needs.job_get_metadata.outputs.changed_any_code == 'true' &&
131131
(needs.job_get_metadata.outputs.is_gitflow_sync == 'false' && needs.job_get_metadata.outputs.has_gitflow_label == 'false')
132132
steps:
133133
- name: Check out base commit (${{ github.event.pull_request.base.sha }})

0 commit comments

Comments
 (0)