mirror of https://github.com/actions/toolkit
Add RUN_ATTEMPT to Github context
parent
0407266511
commit
faa425440f
|
@ -16,6 +16,7 @@ export class Context {
|
||||||
action: string
|
action: string
|
||||||
actor: string
|
actor: string
|
||||||
job: string
|
job: string
|
||||||
|
runAttempt: number
|
||||||
runNumber: number
|
runNumber: number
|
||||||
runId: number
|
runId: number
|
||||||
apiUrl: string
|
apiUrl: string
|
||||||
|
@ -44,6 +45,7 @@ export class Context {
|
||||||
this.action = process.env.GITHUB_ACTION as string
|
this.action = process.env.GITHUB_ACTION as string
|
||||||
this.actor = process.env.GITHUB_ACTOR as string
|
this.actor = process.env.GITHUB_ACTOR as string
|
||||||
this.job = process.env.GITHUB_JOB as string
|
this.job = process.env.GITHUB_JOB as string
|
||||||
|
this.runAttempt = parseInt(process.env.GITHUB_RUN_ATTEMPT as string, 10)
|
||||||
this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER as string, 10)
|
this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER as string, 10)
|
||||||
this.runId = parseInt(process.env.GITHUB_RUN_ID as string, 10)
|
this.runId = parseInt(process.env.GITHUB_RUN_ID as string, 10)
|
||||||
this.apiUrl = process.env.GITHUB_API_URL ?? `https://api.github.com`
|
this.apiUrl = process.env.GITHUB_API_URL ?? `https://api.github.com`
|
||||||
|
|
Loading…
Reference in New Issue