Commit df17c4dc authored by Sean McGivern's avatar Sean McGivern

Merge branch '39237-fix-ee_compat_check' into 'master'

Improve the gitlab:dev:ee_compat_check task to pass a repo URL without credentials

Closes #39237

See merge request gitlab-org/gitlab-ce!14934
parents 4733570c a5cc1c26
......@@ -5,7 +5,9 @@ namespace :gitlab do
opts =
if ENV['CI']
{
ce_repo: ENV['CI_REPOSITORY_URL'],
# We don't use CI_REPOSITORY_URL since it includes `gitlab-ci-token:xxxxxxxxxxxxxxxxxxxx@`
# which is confusing in the steps suggested in the job's output.
ce_repo: "#{ENV['CI_PROJECT_URL']}.git",
branch: ENV['CI_COMMIT_REF_NAME']
}
else
......
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