Gopalakrishnan
Gopalakrishnan

Reputation: 45

Manually trigger a teamcity build from github

I want to trigger a build in Teamcity by doing a manual action(not a commit or pullrequests). Like if i click a button in github it should trigger a build config in teamcity or something similar(by passing the branch). I dont want the process to be automatic for every commits, instead just manually trigger for custom branches.

If there is a possibility for this, pls let me know as it would be much helpfull..

Thanks in advance!

Upvotes: 0

Views: 1153

Answers (1)

Petar Marinac
Petar Marinac

Reputation: 159

Yes you can do that by leaving your Triggers menu empty... enter image description here Go to Build --> Edit settings --> Triggers and make shore that there are no triggers. You can alway manually run build by clicking on icon RUN enter image description here

If you want trigger just for couple of branches you can add trigger to your VCS like this enter image description here

so my list contains branches develop, qa, release and master and rule +:*/merge is for every open Pull Request

Upvotes: 1

Related Questions