Commit aef24e9f authored by Evan Read's avatar Evan Read

Merge branch 'docs-environment-stop-git-strategy' into 'master'

Updates the yaml docs to match the environment docs regarding `GIT_STRATEGY=none`

See merge request gitlab-org/gitlab-ce!30283
parents d69a0932 b7ebf1b5
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment