Skip to content

Commit f050c11

Browse files
nipierredacbd
andauthored
fix: replace deprecated gitlab ci var (#1404)
* fix: replace deprecated gitlab ci var GitLab 16.x deprecated several variables including CI_BUILD_REF_NAME. In order to be exhaustive, two variables are replacing it: CI_COMMIT_BRANCH (prefered) and CI_COMMIT_REF_NAME. Issue: #1403 * Update src/drivers/gitlab.js * ci: add expires_at in gitlab credentials --------- Co-authored-by: Daniel Barnes <[email protected]>
1 parent 5357616 commit f050c11

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/gitlab.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
; user.password = '${{ github.token }}'
2929
; user.password_confirmation = '${{ github.token }}'
3030
; user.save!
31-
; token = user.personal_access_tokens.create(scopes: [:api], name: 'Token')
31+
; token = user.personal_access_tokens.create(scopes: [:api], name: 'Token', expires_at: 1.days.from_now)
3232
; token.set_token('${{ github.token }}')
3333
; token.save!
3434
"

src/drivers/gitlab.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,10 @@ class Gitlab {
530530
}
531531

532532
get branch() {
533-
return process.env.CI_BUILD_REF_NAME;
533+
if ('CI_COMMIT_BRANCH' in process.env) {
534+
return process.env.CI_COMMIT_BRANCH;
535+
}
536+
return process.env.CI_COMMIT_REF_NAME;
534537
}
535538

536539
get userEmail() {

0 commit comments

Comments
 (0)