diff options
author | Mark Lapierre <mlapierre@gitlab.com> | 2019-07-03 05:01:57 +0000 |
---|---|---|
committer | Mark Lapierre <mlapierre@gitlab.com> | 2019-07-04 09:01:52 +1000 |
commit | b7ebf1b531ee75658f1ccb37019304b2edb051c5 (patch) | |
tree | 165faa94b8041a4f92a4ae4a0aa6c6be4ac31aaf | |
parent | c1d250c2844991f51489d769dd6fca0f4ebdda19 (diff) | |
download | gitlab-ce-b7ebf1b531ee75658f1ccb37019304b2edb051c5.tar.gz |
Update docs environment:action:stop GIT_STRATEGYdocs-environment-stop-git-strategy
Notes that `GIT_STRATEGY` should be set to `none` so that the
job doesn't fail when triggered automatically when the branch
is deleted.
-rw-r--r-- | doc/ci/yaml/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index 2759f1c5160..3e564e4244c 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -973,6 +973,8 @@ review_app: stop_review_app: stage: deploy + variables: + GIT_STRATEGY: none script: make delete-app when: manual environment: @@ -987,6 +989,10 @@ Once the `review_app` job is successfully finished, it will trigger the set it up to `manual` so it will need a [manual action](#whenmanual) via GitLab's web interface in order to run. +Also in the example, `GIT_STRATEGY` is set to `none` so that GitLab Runner won’t +try to check out the code after the branch is deleted when the `stop_review_app` +job is [automatically triggered](../environments.md#automatically-stopping-an-environment). + The `stop_review_app` job is **required** to have the following keywords defined: - `when` - [reference](#when) |