Skip to content

Commit 19d835d

Browse files
authored
[2023-03-28]: Add new OIDC claims runner_environment and enterprise github#9725 (github#35537)
1 parent 5abae2c commit 19d835d

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

content/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,14 @@ The following example OIDC token uses a subject (`sub`) that references a job en
7676
"repository_owner_id": "65",
7777
"run_id": "example-run-id",
7878
"run_number": "10",
79-
"run_attempt": "2",
79+
"run_attempt": "2",{% ifversion actions-OIDC-custom-claim-runner-environment %}
80+
"runner_environment": "github-hosted"{% endif %}
8081
"actor": "octocat",
8182
"workflow": "example-workflow",
8283
"head_ref": "",
8384
"base_ref": "",
84-
"event_name": "workflow_dispatch",
85+
"event_name": "workflow_dispatch",{% ifversion actions-OIDC-custom-claim-enterprise %}
86+
"enterprise": "avocado-corp"{% endif %}
8587
"ref_type": "branch",
8688
"job_workflow_ref": "octo-org/octo-automation/.github/workflows/oidc.yml@refs/heads/main",
8789
"iss": "{% ifversion ghes %}https://HOSTNAME/_services/token{% else %}https://token.actions.githubusercontent.com{% endif %}",
@@ -121,6 +123,9 @@ The token also includes custom claims provided by {% data variables.product.prod
121123
| `actor`| The personal account that initiated the workflow run. |
122124
| `actor_id`| The ID of personal account that initiated the workflow run. |
123125
| `base_ref`| The target branch of the pull request in a workflow run. |
126+
{%- ifversion actions-OIDC-custom-claim-enterprise %}
127+
| `enterprise`| The name of the enterprise that contains the repository from where the workflow is running. |
128+
{%- endif %}
124129
| `environment`| The name of the environment used by the job. |
125130
| `event_name`| The name of the event that triggered the workflow run. |
126131
| `head_ref`| The source branch of the pull request in a workflow run. |
@@ -138,6 +143,9 @@ The token also includes custom claims provided by {% data variables.product.prod
138143
| `run_id`| The ID of the workflow run that triggered the workflow. |
139144
| `run_number`| The number of times this workflow has been run. |
140145
| `run_attempt`| The number of times this workflow run has been retried. |
146+
{%- ifversion actions-OIDC-custom-claim-runner-environment %}
147+
| `runner_environment`| The type of runner used by the job. Accepts the following values: `github-hosted` or `self-hosted`. |
148+
{%- endif %}
141149
| `workflow`| The name of the workflow. |
142150
{%- ifversion actions-oidc-custom-claims %}
143151
| `workflow_ref`| {% data reusables.actions.workflow-ref-description %} |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Reference: #9725
2+
# Adding new OIDC claim - enterprise
3+
versions:
4+
ghec: '*'
5+
ghes: '>=3.8'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Reference: #9725
2+
# Adding new OIDC claim - runner environment
3+
versions:
4+
fpt: '*'
5+
ghec: '*'
6+
ghes: '>=3.9'

0 commit comments

Comments
 (0)