Skip to content

Commit

Permalink
[GHA] Fix condition for skip_workflow in Smart CI (openvinotoolkit#25071
Browse files Browse the repository at this point in the history
)
  • Loading branch information
akladiev authored Jun 17, 2024
1 parent 75440d7 commit f59d42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/smart-ci/smart_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def main():

skip_workflow = False
if is_merge_queue or (args.pr and not run_full_scope):
if args.skip_when_only_listed_labels_set:
if args.skip_when_only_listed_labels_set and changed_component_names:
excepted_labels = set(args.skip_when_only_listed_labels_set.split(','))
excepted_labels_only = changed_component_names - excepted_labels == set()
skip_workflow = excepted_labels_only
Expand Down

0 comments on commit f59d42c

Please sign in to comment.