Skip to content

Commit 0d8decf

Browse files
committed
fix: invert check
1 parent 8163001 commit 0d8decf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/global-queue.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fetch_pipeline_workflows(){
7777

7878
# filter out any workflows that match the ignored list
7979
ignored_workflows="[]"
80-
if [ -z "${CONFIG_IGNORED_WORKFLOWS}" ]; then
80+
if [ -n "${CONFIG_IGNORED_WORKFLOWS}" ]; then
8181
ignored_workflows=$(printf '"%s"' "${CONFIG_IGNORED_WORKFLOWS}" | jq 'split(",")')
8282
fi
8383

0 commit comments

Comments
 (0)