diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2019-02-16 09:16:07 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2019-02-16 09:16:07 +0100 |
| commit | 5c18cb84f27410535c917af52ab55af6bc493caf (patch) | |
| tree | 2be52779ff4eecc380554fe610c38c0a4b347f89 | |
| parent | 2b1bed470f2f2e40da6a5a2b87c60aca75d5cf0b (diff) | |
Remove explicit email notifications from .travis.yml
Explicit email addresses don't play well with forks, i.e. the given
mail receivers are *always* notified instead of the author and the
committer. This led to build notifications sent to me instead of Matt
when he committed something in his own fork.
The default rules are much better in this case. The drawback is that
*only* the committer and author get notified and there is obviously
no way to add anybody that gets notified *additionally* to author
and committer.
https://docs.travis-ci.com/user/notifications/#how-is-the-build-email-receiver-determined
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index feed463e7..75d1df895 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,8 +67,12 @@ after_success: cd - fi -notifications: - email: - recipients: - - fabien@onepost.net - - albrechts.fltk@online.de +# explicit email notifications don't play well with forks: don't use them +# default: committer and author get notifications +# we're now using defaults for everything, hence settings are commented +# out, left only for documentation purposes... + +#notifications: +# email: +# on_success: change # default: change, may be: never +# on_failure: always # default: always |
