Skip to content

Commit c9a67f7

Browse files
committed
fix: fix shared workflow bug
1 parent 59b6b1a commit c9a67f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/shared-check-pr-labels-with-prefix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
echo "Input labels: $LABELS_JSON"
3838
3939
# Use jq to filter labels by prefix (empty prefix returns all labels)
40-
JSON_RESULT=$(echo '$LABELS_JSON' | \
40+
JSON_RESULT=$(echo "$LABELS_JSON" | \
4141
jq --arg prefix "$PREFIX" \
4242
'map(select(.name | startswith($prefix))) |
4343
map({(.name): .}) |

0 commit comments

Comments
 (0)