We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c74d45 commit 84c0adeCopy full SHA for 84c0ade
tools/actions/commit-queue.sh
@@ -64,7 +64,8 @@ for pr in "$@"; do
64
if ! tail -n 10 output | grep '. Post "Landed in .*/pull/'"${pr}"; then
65
gitHubCurl "$(labelsUrl "$pr")" POST --data '{"labels": ["'"${COMMIT_QUEUE_FAILED_LABEL}"'"]}'
66
67
- jq -n --arg content "<details><summary>Commit Queue failed</summary><pre>$(cat output)</pre></details>" '{body: $content}' > output.json
+ cqurl="Commit Queue action: $GITHUB_SERVER_URL/${OWNER}/${REPOSITORY}/actions/runs/$GITHUB_RUN_ID"
68
+ jq -n --arg content "<details><summary>Commit Queue failed</summary><pre>$(cat output)</pre></details>\n$cqurl" '{body: $content}' > output.json
69
cat output.json
70
71
gitHubCurl "$(commentsUrl "$pr")" POST --data @output.json
0 commit comments