We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The @actions/github package populates a GitHub Context similar to github context available in workflows, see https://github.com/actions/toolkit/blob/master/packages/github/src/context.ts
@actions/github
Context
github
This context is missing the Run ID and Run Number, available as GITHUB_RUN_NUMBER and GITHUB_RUN_ID, see https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables#default-environment-variables
GITHUB_RUN_NUMBER
GITHUB_RUN_ID
We should add these values to the package's context and ensure that the workflow github context matches what's available in this package.
Related: #65
The text was updated successfully, but these errors were encountered:
Add execution state information (actions#371)
f94a859
Type conformance to REST API (actions#371)
728bcb5
refs: https://developer.github.com/v3/actions/workflow-runs/#list-workflow-runs
[actions#371] Changed to get the job name
ba4fae5
Changed to get the job name (actions#371)
5e4b1f1
Add execution state information (#499)
2d47f7b
* Add execution state information (#371) * Type conformance to REST API (#371) * Changed to get the job name (#371)
Successfully merging a pull request may close this issue.
Background
The
@actions/github
package populates a GitHubContext
similar togithub
context available in workflows, see https://github.com/actions/toolkit/blob/master/packages/github/src/context.tsIssue
This context is missing the Run ID and Run Number, available as
GITHUB_RUN_NUMBER
andGITHUB_RUN_ID
, see https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables#default-environment-variablesWe should add these values to the package's context and ensure that the workflow
github
context matches what's available in this package.Related: #65
The text was updated successfully, but these errors were encountered: