Tom Gringauz
Tom Gringauz

Reputation: 811

Create custom external pipeline with Gitlab API

I would like to create a custom "external pipeline" through the gitlab api.
Sort of like how an external CI service works, like Jenkins, A pipeline which is initiated by an external service using a webhook, and in the job info links to an external site.

Is there a way to do this? I searched the docs and haven't found anything.

Upvotes: 1

Views: 432

Answers (1)

Tom Gringauz
Tom Gringauz

Reputation: 811

Found my solution. I managed to do this using the commits api's build status updates.
POST /projects/:id/statuses/:sha

Upvotes: 1

Related Questions