We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcab89e commit fb2b41bCopy full SHA for fb2b41b
dist/index.js
@@ -2540,6 +2540,7 @@ class Context {
2540
this.action = process.env.GITHUB_ACTION;
2541
this.actor = process.env.GITHUB_ACTOR;
2542
this.job = process.env.GITHUB_JOB;
2543
+ this.runAttempt = parseInt(process.env.GITHUB_RUN_ATTEMPT, 10);
2544
this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER, 10);
2545
this.runId = parseInt(process.env.GITHUB_RUN_ID, 10);
2546
this.apiUrl = (_a = process.env.GITHUB_API_URL) !== null && _a !== void 0 ? _a : `https://api.github.com`;
0 commit comments