Skip to content

Commit 383049b

Browse files
authored
Merge pull request #432 from dafyddj/ci/fix-job-names
ci(gitlab-ci): use `CI_JOB_NAME` instead of internal env vars
2 parents 5735cc2 + b5b69c4 commit 383049b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ rubocop:
135135
policy: 'pull'
136136
before_script: *bundle_install
137137
script:
138-
# Alternative value to consider: `${CI_JOB_NAME}`
139-
- 'bin/kitchen verify "${DOCKER_ENV_CI_JOB_NAME}"'
138+
- 'echo "Starting test job: ${CI_JOB_NAME}"'
139+
- 'bin/kitchen verify "${CI_JOB_NAME}"'
140140

141141
###############################################################################
142142
# Define `test` template (`allow_failure: true`)

0 commit comments

Comments
 (0)