Skip to content

Commit 84523cb

Browse files
fix: git setup user name should use GITLAB_CI_USER_NAME
1 parent 140b95b commit 84523cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gitUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { exec } from '@actions/exec'
33
import { execWithOutput, identify } from './utils.js'
44

55
export const setupUser = async () => {
6-
await exec('git', ['config', 'user.name', process.env.GITLAB_USER_NAME!])
6+
await exec('git', ['config', 'user.name', process.env.GITLAB_CI_USER_NAME!])
77
await exec('git', [
88
'config',
99
'user.email',

0 commit comments

Comments
 (0)