You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/definitions/errors.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ By default the \`repositoryUrl\` option is retrieved from the \`repository\` pro
49
49
message: 'Invalid GitLab token.',
50
50
details: `The [GitLab token](${linkify(
51
51
'README.md#gitlab-authentication'
52
-
)}) configured in the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable must be a valid [personal access token](https://docs.gitlab.com/ce/user/profile/personal_access_tokens.html) allowing to push to the repository ${projectPath}.
52
+
)}) configured in the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable must be a valid [personal access token](https://docs.gitlab.com/user/profile/personal_access_tokens/) allowing to push to the repository ${projectPath}.
53
53
54
54
Please make sure to set the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable in your CI with the exact value of the GitLab personal token.`,
55
55
}),
@@ -69,22 +69,22 @@ If you are using [GitLab Enterprise Edition](https://about.gitlab.com/gitlab-ee)
69
69
'README.md#gitlab-authentication'
70
70
)}) configured in the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable must allows to push to the repository ${projectPath}.
71
71
72
-
Please make sure the GitLab user associated with the token has the [permission to push](https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions) to the repository ${projectPath}.`,
72
+
Please make sure the GitLab user associated with the token has the [permission to push](https://docs.gitlab.com/user/permissions/#project-members-permissions) to the repository ${projectPath}.`,
73
73
}),
74
74
EGLNOPULLPERMISSION: ({projectPath})=>({
75
75
message: `The GitLab token doesn't allow to pull from the repository ${projectPath}.`,
76
76
details: `The user associated with the [GitLab token](${linkify(
77
77
'README.md#gitlab-authentication'
78
78
)}) configured in the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable must allow pull from the repository ${projectPath}.
79
79
80
-
Please make sure the GitLab user associated with the token has the [permission to push](https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions) to the repository ${projectPath}.`,
80
+
Please make sure the GitLab user associated with the token has the [permission to push](https://docs.gitlab.com/user/permissions/#project-members-permissions) to the repository ${projectPath}.`,
81
81
}),
82
82
ENOGLTOKEN: ({repositoryUrl})=>({
83
83
message: 'No GitLab token specified.',
84
84
details: `A [GitLab personal access token](${linkify(
85
85
'README.md#gitlab-authentication'
86
86
)}) must be created and set in the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable on your CI environment.
87
87
88
-
Please make sure to create a [GitLab personal access token](https://docs.gitlab.com/ce/user/profile/personal_access_tokens.html) and to set it in the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable on your CI environment. The token must allow to push to the repository ${repositoryUrl}.`,
88
+
Please make sure to create a [GitLab personal access token](https://docs.gitlab.com/user/profile/personal_access_tokens/) and to set it in the \`GL_TOKEN\` or \`GITLAB_TOKEN\` environment variable on your CI environment. The token must allow to push to the repository ${repositoryUrl}.`,
0 commit comments