From 7584daef9b09da794ebe1e4a2106a6b73084a3d0 Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Sun, 23 Apr 2023 03:21:49 -0700 Subject: [PATCH] Remove the slash from review environment names to prevent directory collapsing in the UI --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 877a0e3..283c21c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,7 +28,7 @@ review: rules: - if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH environment: - name: review/$CI_COMMIT_BRANCH + name: "review $CI_COMMIT_BRANCH" url: "https://$CI_PROJECT_NAMESPACE.$CI_PAGES_DOMAIN/-/$CI_PROJECT_NAME/-/jobs/$CI_JOB_ID/artifacts/public/index.html" # Deploy to GitLab Pages for pushes on the default branch -- GitLab