Reputation: 143
I have following code in a yaml file of a branch of repo
include:
project: my-project
ref: test_branch
file: common.yml
Now after merging it with master how do I make the ref to point to master automatically as the common.yml is in the test_branch only as of now?
Upvotes: 0
Views: 4015
Reputation: 4754
If the file is within the same repository and you want to access always the file within the same branch, you can also use
include:
- local: common.yml
Upvotes: 1