Fix bug where run attempt was reported as run ID (#1661)

This commit is contained in:
Angela P Wen
2023-04-27 11:05:34 -07:00
committed by GitHub
parent dcf71cf79b
commit 8b12d99ee5
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -267,7 +267,7 @@ exports.getWorkflowRunID = getWorkflowRunID;
* Get the workflow run attempt number.
*/
function getWorkflowRunAttempt() {
const workflowRunAttemptString = (0, util_1.getRequiredEnvParam)("GITHUB_RUN_ID");
const workflowRunAttemptString = (0, util_1.getRequiredEnvParam)("GITHUB_RUN_ATTEMPT");
const workflowRunAttempt = parseInt(workflowRunAttemptString, 10);
if (Number.isNaN(workflowRunAttempt)) {
throw new Error(`GITHUB_RUN_ATTEMPT must define a non NaN workflow run attempt. Current value is ${workflowRunAttemptString}`);
+1 -1
View File
File diff suppressed because one or more lines are too long