We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4adaf commit c3438edCopy full SHA for c3438ed
tools/actions/commit-queue.sh
@@ -114,7 +114,7 @@ for pr in "$@"; do
114
cat output.json
115
gitHubCurl "$(mergeUrl "$pr")" PUT --data @output.json > output
116
cat output
117
- if ! commits="$(jq 'if .merged then .sha else error("not merged") end' < output)"; then
+ if ! commits="$(jq -r 'if .merged then .sha else error("not merged") end' < output)"; then
118
commit_queue_failed "$pr"
119
continue
120
fi
0 commit comments