Background
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
Issue
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
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
Background
The
@actions/githubpackage populates a GitHubContextsimilar togithubcontext 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_NUMBERandGITHUB_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
githubcontext matches what's available in this package.Related: #65