You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wish to be notified only when status is changed. For example, consider this build history:
Success
Success
Success
Fail
Fail
Success
Success
The notification should sent at build number 4 (Success -> Fail) and number 6 (Fail -> Success).
Besides this, with the current implementation, each notifier decides the timing of notification on their own, commonly with these attributes:
ignore_success
ignore_skip
This leads to some code duplication in each notifier module.
This new logic of "reporting on status change" can obviously be added to all notification mdules but that'll just make the code duplication even worse. It is perhaps better to add a role that decides when to notify or not.
The text was updated successfully, but these errors were encountered:
gugod
changed the title
Reporting on status change.
Notification on status change.
Mar 9, 2018
I wish to be notified only when status is changed. For example, consider this build history:
The notification should sent at build number 4 (Success -> Fail) and number 6 (Fail -> Success).
Besides this, with the current implementation, each notifier decides the timing of notification on their own, commonly with these attributes:
This leads to some code duplication in each notifier module.
This new logic of "reporting on status change" can obviously be added to all notification mdules but that'll just make the code duplication even worse. It is perhaps better to add a role that decides when to notify or not.
The text was updated successfully, but these errors were encountered: