1
0
mirror of synced 2025-12-30 03:01:36 -05:00

Add versioning and minor change to description text

This commit is contained in:
Jess Hosman
2022-09-27 16:21:10 -06:00
committed by GitHub
parent f9a5adcbad
commit 3b49aeff02

View File

@@ -211,7 +211,9 @@ The `github` context contains information about the workflow run and the event t
{%- ifversion fpt or ghec or ghes > 3.5 or ghae-issue-4722 %}
| `github.run_attempt` | `string` | A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run. |
{%- endif %}
| `github.secret_source` | `string` | The secret used when the workflow is triggered by Dependabot event or other actors. It can be `None`, `Actions`, or `Dependabot`. |
{%- ifversion fpt or ghec or ghes > 3.3 %}
| `github.secret_source` | `string` | The source of a secret used in a workflow. Possible values are `None`, `Actions`, `Dependabot`, or `Codespaces`. |
{%- endif %}
| `github.server_url` | `string` | The URL of the GitHub server. For example: `https://github.com`. |
| `github.sha` | `string` | {% data reusables.actions.github_sha_description %} |
| `github.token` | `string` | A token to authenticate on behalf of the GitHub App installed on your repository. This is functionally equivalent to the `GITHUB_TOKEN` secret. For more information, see "[Automatic token authentication](/actions/security-guides/automatic-token-authentication)." <br /> Note: This context property is set by the Actions runner, and is only available within the execution `steps` of a job. Otherwise, the value of this property will be `null`. |{% ifversion actions-stable-actor-ids %}