1

At CircleCI: Is it possible to trigger a build when a git repository that is not mine changes / gets a new tag?

Jonas Gröger
  • 1,558
  • 2
  • 21
  • 35

1 Answers1

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