Hello,
I have set a yaml notify
on my pipeline as below:
notify:
- if: build.branch == pipeline.default_branch || build.message =~ /enable slack/
slack:
channels:
- "#my-channel"
And my admin has configure the following settings on the pipeline.
I have found that now all feature branches, even though their commit messages don’t contain “enable slack”, are sending notifications. Does the settings by my admin has a higher priority than my yaml please? If so, how could I fix this?
Thank you!