Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
slntopp committed Dec 2, 2024
1 parent 21edd9f commit 6268bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/github/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (s *Service) ParseCLI(req *plugin.ParseCLIReq) (*plugin.ParseCLIRes, error)
token = os.Getenv("GITHUB_TOKEN")
}
if token == "" && !isAppAuth {
return nil, errors.New("a valid GitHub authentication is required, pass --token '<yourtoken>', set GITHUB_TOKEN environment variable or provider GitHub App credentials")
return nil, errors.New("a valid GitHub authentication is required, pass --token '<yourtoken>', set GITHUB_TOKEN environment variable or provide GitHub App credentials")
}
if token != "" {
conf.Credentials = append(conf.Credentials, vault.NewPasswordCredential("", token))
Expand Down

0 comments on commit 6268bef

Please sign in to comment.