Reputation: 149
I want my Pipeline
to work on a specific branch, different than master
. After building Pipeline
in DevOps
the azure-pipelines.yml
file goes to the master
branch. Do I have to add this file manually to a different branch? Or it can be done somewhere during a configuration?
Upvotes: 0
Views: 441
Reputation: 72171
By default its being added to master branch, you'd need to cherry pick it into your desired branch, or just create it\edit it there in the first place. its just a file.
Upvotes: 2