diff options
author | Kirill Zaitsev <kirik910@gmail.com> | 2018-11-15 21:42:10 +0200 |
---|---|---|
committer | Kirill Zaitsev <kirik910@gmail.com> | 2018-11-15 22:04:47 +0200 |
commit | 9bea3c0fbb6c16adcdccf7044583415bda8234c1 (patch) | |
tree | 5dea5b74169f5d340e0276887caf55f4fd21acbf /doc/ci/yaml | |
parent | 97e3d5ce292d056a9dd15e16823b9570832db02a (diff) | |
download | gitlab-ce-9bea3c0fbb6c16adcdccf7044583415bda8234c1.tar.gz |
Add glob for CI changes detection
Diffstat (limited to 'doc/ci/yaml')
-rw-r--r-- | doc/ci/yaml/README.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index aab5f268ef9..2a667c985da 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -476,6 +476,7 @@ docker build: - Dockerfile - docker/scripts/* - dockerfiles/**/* + - more_scripts/*.{rb,py,sh} ``` In the scenario above, if you are pushing multiple commits to GitLab to an @@ -485,6 +486,7 @@ one of the commits contains changes to either: - The `Dockerfile` file. - Any of the files inside `docker/scripts/` directory. - Any of the files and subfolders inside `dockerfiles` directory. +- Any of the files with `rb`, `py`, `sh` extensions inside `more_scripts` directory. CAUTION: **Warning:** There are some caveats when using this feature with new branches and tags. See |