Skip to content

Commit 3b8ca9d

Browse files
committed
Use -r with jq when fetching run ids
1 parent 0535130 commit 3b8ca9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ get_workflow_runs() {
115115
echo "Getting workflow runs using query: ${query}" >&2
116116

117117
api "workflows/${INPUT_WORKFLOW_FILE_NAME}/runs?${query}" |
118-
jq '.workflow_runs[].id' |
118+
jq -r '.workflow_runs[].id' |
119119
sort # Sort to ensure repeatable order, and lexicographically for compatibility with join
120120
}
121121

0 commit comments

Comments
 (0)