Skip to content

Commit

Permalink
Fix a print line variable
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaslana committed May 13, 2024
1 parent 4325eaf commit 5690aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/github/checkPendingCI.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func CheckForPendingCI(githubClient *github.Client, internalTeam string, cfg con
continue // or handle the error as needed
}
if !hasCIRuns || !teamMemberActivity {
log.Printf("PR #%d in %s %s by %s is ready for CI since %v but no CI actions have started yet, or it requires re-approval.", owner, repo, pr.GetNumber(), pr.User.GetLogin(), pr.CreatedAt)
log.Printf("PR #%d in %s %s by %s is ready for CI since %v but no CI actions have started yet, or it requires re-approval.", pr.GetNumber(), owner, repo, pr.User.GetLogin(), pr.CreatedAt)
pendingPRs = append(pendingPRs, pr.GetHTMLURL())
}
}
Expand Down

0 comments on commit 5690aed

Please sign in to comment.