diff --git a/internal/pipe/brew/brew.go b/internal/pipe/brew/brew.go index 31ced690f..98d3815fa 100644 --- a/internal/pipe/brew/brew.go +++ b/internal/pipe/brew/brew.go @@ -167,6 +167,7 @@ func doPublish(ctx *context.Context, formula *artifact.Artifact, cl client.Clien } if !brew.Repository.PullRequest.Enabled { + log.Debug("brews.pull_request disabled") return cl.CreateFile(ctx, author, repo, content, gpath, msg) } diff --git a/internal/pipe/winget/winget.go b/internal/pipe/winget/winget.go index d986a817b..a6431dec2 100644 --- a/internal/pipe/winget/winget.go +++ b/internal/pipe/winget/winget.go @@ -381,7 +381,7 @@ func doPublish(ctx *context.Context, cl client.Client, wingets []*artifact.Artif } if !winget.Repository.PullRequest.Enabled { - log.Debug("winget.pull_request disabled") + log.Debug("wingets.pull_request disabled") return nil }