Skip to content

Commit e5805ab

Browse files
authored
Update accessing-contextual-information-about-workflow-runs.md
1 parent ce76d72 commit e5805ab

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

content/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ The `github` context contains information about the workflow run and the event t
206206
| `github.repository_id` | `string` | {% data reusables.actions.repository_id-description %} |
207207
| `github.repository_owner` | `string` | The repository owner's username. For example, `octocat`. |
208208
| `github.repository_owner_id` | `string` | {% data reusables.actions.repository_owner_id-description %} |
209-
| `github.repositoryUrl` | `string` | The Git URL to the repository. For example, `git://github.com/octocat/hello-world.git`. [(See note below)](/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#note-on-githubrepositoryurl-property) |
209+
| `github.repositoryUrl` | `string` | The Git URL to the repository. For example, `git://github.com/octocat/hello-world.git`. Note: The `git://` protocol has been retired for security reasons. This value should only be used for identification and cannot be used to perform any git operations. Replace with {% raw %}`${{ github.serverUrl }}${{ github.repository }}`{% endraw %} to give you the HTTPS URL for the current repository. |
210210
| `github.retention_days` | `string` | The number of days that workflow run logs and artifacts are kept. |
211211
| `github.run_id` | `string` | {% data reusables.actions.run_id_description %} |
212212
| `github.run_number` | `string` | {% data reusables.actions.run_number_description %} |
@@ -288,10 +288,6 @@ jobs:
288288
run: echo "Running PR only CI"
289289
```
290290

291-
### Note on `github.repositoryUrl` property
292-
293-
The `git://` protocol is disabled for security reasons. You will not be able to use the value of `github.repositoryUrl` to perform any git operations. Instead, you can use `${{ github.serverUrl }}${{ github.repository }}` to give you the HTTP URL for the current repository.
294-
295291
## `env` context
296292

297293
The `env` context contains variables that have been set in a workflow, job, or step. It does not contain variables inherited by the runner process. For more information about setting variables in your workflow, see [AUTOTITLE](/actions/using-workflows/workflow-syntax-for-github-actions#env).

0 commit comments

Comments
 (0)