I know it’s an experimental feature, but we have notifications set only for master branch
experimental:
notify:
branches:
only:
- master
but when ever some non-master branch breaks due to missing commit (like quick force push to the branch), we get a notification on our channel.
Steps to reproduce:
set notification only for master
set slack notifications
on some non-master branch, do some changes,push them
rebase quickly with master and force push them
2 Likes
baylee
October 24, 2016, 11:00pm
2
I’m encountering the same issue, which I also mentioned here: Webhook notify depending on the branch
My webhook is hit for every branch I push (features, fixes, etc) even though I specify only wanting to notify on develop. Here’s the relevant part of circle.yml:
experimental:
notify:
branches:
only:
- develop
notify:
webhooks:
- url: https://domain.com/webhook
jspiro
December 20, 2016, 12:31am
3
We’re seeing notifications for random branches despite our config looking like this:
experimental:
notify:
branches:
only:
- master
jwlms
February 5, 2018, 11:43pm
4
I’m seeing this issue also. This would be a very helpful feature to have working. If anyone has work arounds for this please let me know.