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>2021-07-20 15:10:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-20 15:10:29 +0300
commita84766a28a87c0342c6b048f5ea2eab2f3216fcf (patch)
treec929643b8b21e05da13692620bd508a869d6fbe7 /lib/gitlab/chat
parentf5f1f221ba08228dbbdd7080509028a7cac2fce2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/chat')
-rw-r--r--lib/gitlab/chat/command.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitlab/chat/command.rb b/lib/gitlab/chat/command.rb
index 49b7dcf4bbe..0add53f8174 100644
--- a/lib/gitlab/chat/command.rb
+++ b/lib/gitlab/chat/command.rb
@@ -54,10 +54,12 @@ module Gitlab
}
)
- service.execute(:chat) do |pipeline|
+ response = service.execute(:chat) do |pipeline|
build_environment_variables(pipeline)
build_chat_data(pipeline)
end
+
+ response.payload
end
# pipeline - The `Ci::Pipeline` to create the environment variables for.