aboutsummaryrefslogtreecommitdiff
path: root/skip_ci.py
diff options
context:
space:
mode:
authorGuilherme Janczak <guilherme.janczak@yandex.com>2022-05-27 00:05:55 +0000
committerEli Schwartz <eschwartz93@gmail.com>2022-05-26 20:47:39 -0400
commit3c66be0c1d61d7fa7b2fe163440624c838ea4d33 (patch)
tree336ca4b8d2c5605efdea390295e6e5443cc11d18 /skip_ci.py
parentfda4c49c34f2650b739ebf741e45228c5ebafb0c (diff)
downloadmeson-3c66be0c1d61d7fa7b2fe163440624c838ea4d33.zip
meson-3c66be0c1d61d7fa7b2fe163440624c838ea4d33.tar.gz
meson-3c66be0c1d61d7fa7b2fe163440624c838ea4d33.tar.bz2
don't tell documentation contributors to skip CI
The CI correctly handles documentation changes automatically, it's no longer necessary to do it by hand.
Diffstat (limited to 'skip_ci.py')
-rwxr-xr-xskip_ci.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/skip_ci.py b/skip_ci.py
index 7411d57..4ade979 100755
--- a/skip_ci.py
+++ b/skip_ci.py
@@ -61,8 +61,7 @@ def main():
if args.base_branch_origin:
base = 'origin/' + base
if all(is_documentation(f) for f in get_git_files(base)):
- print("Don't run CI for documentation-only changes, add '[skip ci]' to commit title.")
- print('See http://mesonbuild.com/Contributing.html#skipping-integration-tests')
+ print("Documentation change, CI skipped.")
sys.exit(1)
except Exception:
# If this script fails we want build to proceed.