Skip to content

Commit

Permalink
Changed the output string to "Using your github token". (#814)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmossman committed Jan 21, 2021
1 parent dd35bfd commit 2acd1ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func NewClient() Client {
var client *http.Client
githubToken := os.Getenv("GITHUB_TOKEN")
if githubToken != "" {
log.Logger.Info("Use your github token")
log.Logger.Info("Using your github token")
ctx := context.Background()
ts := oauth2.StaticTokenSource(&oauth2.Token{AccessToken: githubToken})
client = oauth2.NewClient(ctx, ts)
Expand Down

0 comments on commit 2acd1ca

Please sign in to comment.