Skip to content

Commit

Permalink
Do not error while adding merge comment (#2564)
Browse files Browse the repository at this point in the history
  • Loading branch information
phanimarupaka committed Nov 2, 2021
1 parent ec02edf commit 8795691
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/util/addmergecomment/addmergecomment.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ func Process(paths ...string) error {
Outputs: []kio.Writer{inout},
}.Execute()
if err != nil {
return err
// this should be a best effort, do not error if this step fails
// https://github.com/GoogleContainerTools/kpt/issues/2559
return nil
}
}
return nil
Expand Down

0 comments on commit 8795691

Please sign in to comment.