Create pipeline
documentedTrigger a new pipeline for the project.
POST /projects/:id/pipelinesProjectsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://gitlab.com/api/v4/projects/{{$project_id}}/pipeline" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"ref": "{{$ref}}", "variables": [{"key": "ENV", "value": "{{$env}}"}, {"key": "BUILD_ID", "value": "{{$build_id}}"}]}'