summaryrefslogtreecommitdiff
path: root/app/presenters
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-05 12:09:59 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-05 12:09:59 +0000
commitb90cf01a88df981f452a7f6b6d74e8fd0ccbf90b (patch)
tree669bd8c7dab7f6aad2b9eef6d03cdb7bb4e687db /app/presenters
parentf9053931de583bbc3c6a8033f70929a91ce02e93 (diff)
downloadgitlab-ce-b90cf01a88df981f452a7f6b6d74e8fd0ccbf90b.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/ci/build_runner_presenter.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/presenters/ci/build_runner_presenter.rb b/app/presenters/ci/build_runner_presenter.rb
index ff9522e2db0..9a586a1733f 100644
--- a/app/presenters/ci/build_runner_presenter.rb
+++ b/app/presenters/ci/build_runner_presenter.rb
@@ -33,12 +33,10 @@ module Ci
end
def runner_variables
- stop_expanding_raw_refs = ::Feature.enabled?(:ci_raw_variables_in_yaml_config, project)
-
variables
.sort_and_expand_all(keep_undefined: true,
expand_file_refs: false,
- expand_raw_refs: !stop_expanding_raw_refs)
+ expand_raw_refs: false)
.to_runner_variables
end