mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Appveyor shouldn't email the author when nothing breaks
This commit is contained in:
parent
71094a39ad
commit
c853aac0fb
13
appveyor.yml
13
appveyor.yml
|
@ -9,9 +9,22 @@ notifications:
|
||||||
- provider: Email
|
- provider: Email
|
||||||
to:
|
to:
|
||||||
- '{{commitAuthorEmail}}'
|
- '{{commitAuthorEmail}}'
|
||||||
|
on_build_success: false
|
||||||
on_build_failure: true
|
on_build_failure: true
|
||||||
on_build_status_changed: true
|
on_build_status_changed: true
|
||||||
|
|
||||||
|
# Skip commits that don't affect the code / compiling the code
|
||||||
|
skip_commits:
|
||||||
|
files:
|
||||||
|
- .gitignore
|
||||||
|
- .gitlab-ci.yml
|
||||||
|
- .travis-install.bash
|
||||||
|
- .travis.yml
|
||||||
|
- COPYING
|
||||||
|
- CREDITS
|
||||||
|
- README.md
|
||||||
|
- docs.doxy
|
||||||
|
|
||||||
# Download only a zip file of the latest commit
|
# Download only a zip file of the latest commit
|
||||||
# Downloading the whole history of the repository would be unnecessary
|
# Downloading the whole history of the repository would be unnecessary
|
||||||
shallow_clone: true
|
shallow_clone: true
|
||||||
|
|
Loading…
Reference in a new issue