@@ -76,12 +76,14 @@ The following example OIDC token uses a subject (`sub`) that references a job en
76
76
" repository_owner_id " : " 65" ,
77
77
" run_id " : " example-run-id" ,
78
78
" run_number " : " 10" ,
79
- " run_attempt " : " 2" ,
79
+ " run_attempt " : " 2" ,{% ifversion actions-OIDC-custom-claim-runner-environment %}
80
+ " runner_environment " : " github-hosted" {% endif %}
80
81
" actor " : " octocat" ,
81
82
" workflow " : " example-workflow" ,
82
83
" head_ref " : " " ,
83
84
" base_ref " : " " ,
84
- " event_name " : " workflow_dispatch" ,
85
+ " event_name " : " workflow_dispatch" ,{% ifversion actions-OIDC-custom-claim-enterprise %}
86
+ " enterprise " : " avocado-corp" {% endif %}
85
87
" ref_type " : " branch" ,
86
88
" job_workflow_ref " : " octo-org/octo-automation/.github/workflows/oidc.yml@refs/heads/main" ,
87
89
" 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
121
123
| ` actor ` | The personal account that initiated the workflow run. |
122
124
| ` actor_id ` | The ID of personal account that initiated the workflow run. |
123
125
| ` 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 %}
124
129
| ` environment ` | The name of the environment used by the job. |
125
130
| ` event_name ` | The name of the event that triggered the workflow run. |
126
131
| ` 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
138
143
| ` run_id ` | The ID of the workflow run that triggered the workflow. |
139
144
| ` run_number ` | The number of times this workflow has been run. |
140
145
| ` 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 %}
141
149
| ` workflow ` | The name of the workflow. |
142
150
{%- ifversion actions-oidc-custom-claims %}
143
151
| ` workflow_ref ` | {% data reusables.actions.workflow-ref-description %} |
0 commit comments