File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,8 @@ for pr in "$@"; do
67
67
if ! tail -n 10 output | grep ' . Post "Landed in .*/pull/' " ${pr} " ; then
68
68
gitHubCurl " $( labelsUrl " $pr " ) " POST --data ' {"labels": ["' " ${COMMIT_QUEUE_FAILED_LABEL} " ' "]}'
69
69
70
- # Use printf to properly escape newline symbols for jq.
71
- printf -v cqurl " \n\nCommit Queue action: %s/%s/%s/actions/runs/%s" \
72
- " $GITHUB_SERVER_URL " " ${OWNER} " " ${REPOSITORY} " " $GITHUB_RUN_ID "
73
- jq -n --arg content " <details><summary>Commit Queue failed</summary><pre>$( cat output) </pre></details>$cqurl " ' {body: $content}' > output.json
70
+ cqurl=" ${GITHUB_SERVER_URL} /${OWNER} /${REPOSITORY} /actions/runs/${GITHUB_RUN_ID} "
71
+ jq -n --arg content " <details><summary>Commit Queue failed</summary><pre>$( cat output) </pre><a href='$cqurl '>$cqurl </a></details>" ' {body: $content}' > output.json
74
72
cat output.json
75
73
76
74
gitHubCurl " $( commentsUrl " $pr " ) " POST --data @output.json
You can’t perform that action at this time.
0 commit comments