Reputation: 811
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
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