Skip to content

Commit 2cbddb7

Browse files
committed
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: iterative#1403
1 parent 204a5a7 commit 2cbddb7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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)