Skip to content

Commit

Permalink
fix: ensure the MR log line prints an integer and not a rune (runatla…
Browse files Browse the repository at this point in the history
…ntis#4078)

Signed-off-by: Jack Andersen <[email protected]>
  • Loading branch information
jandersen-plaid authored and ijames-gc committed Feb 13, 2024
1 parent ffb9fef commit 9264e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/events/project_command_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func (p *DefaultProjectCommandBuilder) buildAllCommandsByCfg(ctx *command.Contex
if err != nil {
return nil, err
}
ctx.Log.Info("%d projects are changed on MR %q based on their when_modified config", len(matchingProjects), ctx.Pull.Num)
ctx.Log.Info("%d projects are changed on MR %d based on their when_modified config", len(matchingProjects), ctx.Pull.Num)
if len(matchingProjects) == 0 {
ctx.Log.Info("skipping repo clone since no project was modified")
return []command.ProjectContext{}, nil
Expand Down

0 comments on commit 9264e3d

Please sign in to comment.