diff options
author | sudoforge <no-reply@sudoforge.com> | 2025-04-27 22:41:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-27 22:41:06 -0700 |
commit | 7b6eb5db5a802828615d044fa0b550d8a576e080 (patch) | |
tree | bdf0f2dd4ef5b7a9fa34348f7e7a999078da57fe /bridge | |
parent | 82763563f3ed421e3f232f9e02ab0b913f095d5c (diff) | |
download | git-bug-7b6eb5db5a802828615d044fa0b550d8a576e080.tar.gz git-bug-7b6eb5db5a802828615d044fa0b550d8a576e080.zip |
fix: use correct url for gitlab PATs (#1384)
Closes: #1268
Change-Id: Ifc029c7058b080b3d9859eaffaa4b9febd2d80b1
Diffstat (limited to 'bridge')
-rw-r--r-- | bridge/gitlab/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/gitlab/config.go b/bridge/gitlab/config.go index dbb84e4a..eec6a514 100644 --- a/bridge/gitlab/config.go +++ b/bridge/gitlab/config.go @@ -194,7 +194,7 @@ func promptTokenOptions(repo repository.RepoKeyring, login, baseUrl string) (aut } func promptToken(baseUrl string) (*auth.Token, error) { - fmt.Printf("You can generate a new token by visiting %s.\n", strings.TrimSuffix(baseUrl, "/")+"/-/profile/personal_access_tokens") + fmt.Printf("You can generate a new token by visiting %s.\n", strings.TrimSuffix(baseUrl, "/")+"/-/user_settings/personal_access_tokens") fmt.Println("Choose 'Create personal access token' and set the necessary access scope for your repository.") fmt.Println() fmt.Println("'api' access scope: to be able to make api calls") |