Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 19:05:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 19:05:49 +0300
commit43a25d93ebdabea52f99b05e15b06250cd8f07d7 (patch)
treedceebdc68925362117480a5d672bcff122fb625b /doc/api/jobs.md
parent20c84b99005abd1c82101dfeff264ac50d2df211 (diff)
Add latest changes from gitlab-org/gitlab@16-0-stable-eev16.0.0-rc42
Diffstat (limited to 'doc/api/jobs.md')
-rw-r--r--doc/api/jobs.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/api/jobs.md b/doc/api/jobs.md
index 2d65ea82edd..f060d86c335 100644
--- a/doc/api/jobs.md
+++ b/doc/api/jobs.md
@@ -331,9 +331,9 @@ In earlier GitLab versions, jobs are sorted by ID in ascending order (oldest fir
In GitLab 13.9 and later, this endpoint can include retried jobs in the response
with `include_retried` set to `true`.
-## List pipeline bridges
+## List pipeline trigger jobs
-Get a list of bridge jobs for a pipeline.
+Get a list of trigger jobs for a pipeline.
```plaintext
GET /projects/:id/pipelines/:pipeline_id/bridges
@@ -867,8 +867,9 @@ POST /projects/:id/jobs/:job_id/play
Example request:
```shell
-curl --request POST "https://gitlab.example.com/api/v4/projects/1/jobs/1/play
- --header "PRIVATE-TOKEN: <your_access_token>"
+curl --request POST "https://gitlab.example.com/api/v4/projects/1/jobs/1/play" \
+ --header "Content-Type: application/json" \
+ --header "PRIVATE-TOKEN: <your_access_token>" \
--data @variables.json
```