At CircleCI: Is it possible to trigger a build when a git repository that is not mine changes / gets a new tag?
Asked
Active
Viewed 335 times
1 Answers
3
You can trigger a build via the CircleCI API
POST: /project/:vcs-type/:username/:project/tree/:branch Triggers a new build, returns a summary of the build.
Example:
curl -X POST -H -d "{}" "https://circleci.com/api/v1/project/your_organization/your_project/tree/master?circle-token=3afeaxxxxxxxxxxx"

Igor Gladun
- 1,422
- 1
- 8
- 8
-
Thanks! It is however not possible to trigger a build when something external happens, i.e. a new tag on github etc. – Jonas Gröger Dec 26 '16 at 19:38