Commit b8ad7dee authored by Allison Browne's avatar Allison Browne

Changes base on Tech Writer review

- Switch to showing shell script example rather than
yaml file example
parent da9c64a0
...@@ -400,13 +400,12 @@ Retrieve the job that generated a job token. ...@@ -400,13 +400,12 @@ Retrieve the job that generated a job token.
GET /job GET /job
``` ```
Examples (within GitLab CI YAML) Examples (must run as part of the [`script`](../ci/yaml/index.md#script) section of a [CI/CD job](../ci/jobs/index.md)):
```yaml ```shell
script: curl --header "Authorization: Bearer $CI_JOB_TOKEN" "${CI_API_V4_URL}/job"
- 'curl --header "Authorization: Bearer $CI_JOB_TOKEN" "${CI_API_V4_URL}/job"' curl --header "JOB-TOKEN: $CI_JOB_TOKEN" "${CI_API_V4_URL}/job"
- 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" "${CI_API_V4_URL}/job"' curl "${CI_API_V4_URL}/job?job_token=$CI_JOB_TOKEN"
- 'curl "${CI_API_V4_URL}/job?job_token=$CI_JOB_TOKEN"'
``` ```
Example of response Example of response
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment