I try to trigger build by using this command line :
POST /api/repos/{namespace}/{name}/builds
POST /api/repos/{namespace}/{name}/builds?branch={branch}
POST /api/repos/{namespace}/{name}/builds?branch={branch}&commit={commit}
I’m able to use this feature just fine with POST https://cloud.drone.io/api/repos/{namespace}/{repo}/builds
Judging by your address https://app maybe you’re calling this from inside a docker container where app does not resolve? And is HTTPS correct here? Perhaps if you are in a docker network it should be HTTP and have a port?
Edit: My bad, you’re showing a GET that works as expected. What is the HTTP status code you’re getting?
have you enabled debug logging and looked at your server logs to see why the build may not have been executed? the system always writes debug logs to indicate why a build was skipped, such as a missing or invalid yaml or [ci skip] in the commit message …