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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-04-27 12:10:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-27 12:10:46 +0300
commit359bc6940b1205035e14f028b75d0c9c80a1fd5e (patch)
treec98c5db8976bfe1cb3d837a0f2af065fb0986e6d /doc/ci/chatops
parentb2382918e433a0ba0e1b4e0d2835abd562cbd103 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci/chatops')
-rw-r--r--doc/ci/chatops/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ci/chatops/index.md b/doc/ci/chatops/index.md
index c785e2f29ea..21b970536bc 100644
--- a/doc/ci/chatops/index.md
+++ b/doc/ci/chatops/index.md
@@ -73,7 +73,7 @@ stages:
hello-world:
stage: chatops
rules:
- - if: '$CI_PIPELINE_SOURCE == "chat"'
+ - if: $CI_PIPELINE_SOURCE == "chat"
script:
- echo "Hello World"
```
@@ -93,7 +93,7 @@ stages:
ls:
stage: chatops
rules:
- - if: '$CI_PIPELINE_SOURCE == "chat"'
+ - if: $CI_PIPELINE_SOURCE == "chat"
script:
- echo "This command will not be shown."
- echo -e "section_start:$( date +%s ):chat_reply\r\033[0K\n$( ls -la )\nsection_end:$( date +%s ):chat_reply\r\033[0K"