Let's say I have branch fetaure1, where there is pipeline file.
The trigger will be like this.
trigger:
- feature1
For development purpose, I created a new branch from it say (feature1_deveoper1)
But, even though this new branch has this pipeline file, need to modify this again to get trigger working from it.
trigger:
- feature1
- feature1_developer1
So, after all my work, let's say I want to merge to the feature1 branch, again I need to remove this new feature entry and merge it to the branch.
Any better approach for this situation?