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
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2019-03-12 07:26:26 +0300
committerEvan Read <eread@gitlab.com>2019-03-12 07:26:26 +0300
commit1f708ebb6603fd22619f622f7c8ddf160bf69806 (patch)
treee20b10daacc20a708f58951ce7420f3ce16cbbfe
parent3ad300377ba4dcfd8e5280a12af084519c5991a7 (diff)
doc Clarify the special branch 'master'
The 'master' branch name is confusing as it indicates some special branch name, where it is actually just a 'ref'. 'branches' _is_ a special name as it indicates 'all' branches. Lets clarify the example a little to indicate this. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
-rw-r--r--doc/ci/yaml/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index e295b696423..a44f4b62a0e 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -367,10 +367,11 @@ job:
- branches@gitlab-org/gitlab-ce
except:
- master@gitlab-org/gitlab-ce
+ - release/.*@gitlab-org/gitlab-ce
```
The above example will run `job` for all branches on `gitlab-org/gitlab-ce`,
-except master.
+except `master` and those with names prefixed with `release/`.
If a job does not have an `only` rule, `only: ['branches', 'tags']` is set by
default. If it doesn't have an `except` rule, it is empty.