Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKirill Zaitsev <kirik910@gmail.com>2018-11-15 22:42:10 +0300
committerKirill Zaitsev <kirik910@gmail.com>2018-11-15 23:04:47 +0300
commit9bea3c0fbb6c16adcdccf7044583415bda8234c1 (patch)
tree5dea5b74169f5d340e0276887caf55f4fd21acbf /doc
parent97e3d5ce292d056a9dd15e16823b9570832db02a (diff)
Add glob for CI changes detection
Diffstat (limited to 'doc')
-rw-r--r--doc/ci/yaml/README.md2
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