Skip to content

Commit

Permalink
Revert "Actually attempt to get the GitHub app's user ID (#5214)" (#5217
Browse files Browse the repository at this point in the history
)

This reverts commit 9286b31.
  • Loading branch information
eleftherias authored Dec 17, 2024
1 parent 9286b31 commit ad7c2d2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions internal/providers/github/clients/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,7 @@ func (g *GitHubAppDelegate) ListAllRepositories(ctx context.Context) ([]*minderv
// GetUserId returns the user id for the GitHub App user
func (g *GitHubAppDelegate) GetUserId(ctx context.Context) (int64, error) {
// Try to get this user ID from the GitHub API
//nolint:errcheck // this will never error
appUserName, _ := g.GetName(ctx)
user, _, err := g.client.Users.Get(ctx, appUserName)
user, _, err := g.client.Users.Get(ctx, "")
if err != nil {
// Fallback to the configured user ID
// note: this is different from the App ID
Expand Down

0 comments on commit ad7c2d2

Please sign in to comment.