How to create Gitlab webhook to receive post or get request from other webapp

Viewed 903

I am trying to receive a call back to run a gitlab runner script from third party webapp which I can register a webhook URL, but I cannot find any documentation about it.

I am wondering if this is even possible to create a webhook address to receive post request and process the request body.

Where can I find the documentation or implementation sample?

1 Answers

run a gitlab runner script from third party webapp

If by runner script you mean project pipeline then you can use API triggers

You can add trigger in Project Settings -> CI/CD -> Pipeline triggers

Related