Skip to content

Commit

Permalink
Update internal/github/checkUnsigned.go
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Marslender <[email protected]>
  • Loading branch information
pmaslana and cmmarslender authored Jan 17, 2025
1 parent 389fece commit 8b2c58c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/github/checkUnsigned.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func checkAndRemoveComment(ctx context.Context, client *github.Client, owner, re
"pr_number", prNumber)
_, err := client.Issues.DeleteComment(ctx, owner, repo, commentID)
if err != nil {
return fmt.Errorf("error deleting comment %d: %v", commentID, err)
return fmt.Errorf("error deleting comment %d: %w", commentID, err)
}
slogs.Logr.Info("Successfully removed unsigned commit comment",
"comment_id", commentID,
Expand Down

0 comments on commit 8b2c58c

Please sign in to comment.