We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent7200c40 commit7df8275Copy full SHA for 7df8275
scripts/prepmsg.sh
@@ -5,11 +5,11 @@ set -ex
5
[$#-ne 2 ]&& (echo"Expected 1 input and 1 output files, got$#";exit; )
6
[!-f$1 ]&& (echo"Input file$1 not found, skipping.";exit; )
7
[-z"${GITHUB_REPOSITORY}" ]&& (echo"GITHUB_REPOSITORY is empty.";exit 1;)
8
-[-z"${GITHUB_RUN_NUMBER}" ]&& (echo"GITHUB_RUN_NUMBER is empty.";exit 1;)
+[-z"${GITHUB_RUN_ID}" ]&& (echo"GITHUB_RUN_ID is empty.";exit 1;)
9
[-z"${GITHUB_JOB}" ]&& (echo"GITHUB_JOB is empty.";exit 1;)
10
11
-URL="https://github.com/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_NUMBER}"
12
-echo"❌ *${GITHUB_JOB}* ([ID *${GITHUB_RUN_NUMBER}*]($URL)):">$2
+URL="https://github.com/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}"
+echo"❌ *${GITHUB_JOB}* ([ID *${GITHUB_RUN_ID}*]($URL)):">$2
13
grep'cpython/Doc/.*WARNING:'$1| \
14
sed's|.*/cpython/Doc|Doc|'| \
15
uniq| \