diff options
author | Grzegorz Bizon <grzegorz@gitlab.com> | 2018-05-21 13:26:51 +0000 |
---|---|---|
committer | Grzegorz Bizon <grzegorz@gitlab.com> | 2018-05-21 13:26:51 +0000 |
commit | 723b2471dc3538fd61a05d6251363e6d0ad66394 (patch) | |
tree | e5d94b4372fcf79e7ba4af3cd889e42593bc4c99 /doc/ci | |
parent | 7100f89f32b9cc95b03ea4e557f969da2b47e121 (diff) | |
parent | cd7702e5cd4ffcb1989d5fe758e3971a8952c5c0 (diff) | |
download | gitlab-ce-723b2471dc3538fd61a05d6251363e6d0ad66394.tar.gz |
Merge branch 'fix/gb/exclude-persisted-variables-from-environment-name' into 'master'
Do not allow to use `CI_PIPELINE_ID` in environment name
Closes #46443
See merge request gitlab-org/gitlab-ce!19032
Diffstat (limited to 'doc/ci')
-rw-r--r-- | doc/ci/environments.md | 1 | ||||
-rw-r--r-- | doc/ci/variables/README.md | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/ci/environments.md b/doc/ci/environments.md index 517e25f00f7..3a491f0073c 100644 --- a/doc/ci/environments.md +++ b/doc/ci/environments.md @@ -252,6 +252,7 @@ including predefined, secure variables and `.gitlab-ci.yml` [`variables`](yaml/README.md#variables). You however cannot use variables defined under `script` or on the Runner's side. There are other variables that are unsupported in environment name context: +- `CI_PIPELINE_ID` - `CI_JOB_ID` - `CI_JOB_TOKEN` - `CI_BUILD_ID` diff --git a/doc/ci/variables/README.md b/doc/ci/variables/README.md index f66b2b374ba..aedf7958c8a 100644 --- a/doc/ci/variables/README.md +++ b/doc/ci/variables/README.md @@ -553,6 +553,7 @@ We do not support variables containing tokens because of security reasons. You can find a full list of unsupported variables below: +- `CI_PIPELINE_ID` - `CI_JOB_ID` - `CI_JOB_TOKEN` - `CI_BUILD_ID` |