fix(clustertool): dont fail changelog gen on a single failed file

This commit is contained in:
Kjeld Schouten
2025-04-10 17:10:27 +02:00
parent db3c61bcb0
commit b39ad21a73
@@ -144,7 +144,8 @@ func (o *ChangelogOptions) Generate() error {
if err := processCommit(c); err != nil {
log.Error().Err(err).Msgf("Error processing commit: %s", c.Hash.String())
return err
// TODO check if we shouldn't fail on a failed commit
// return err
}
currentStatus.mu.Lock()