diff: report if object is skipped

Signed-off-by: Lukas Hoehl <lukas.hoehl@stackit.cloud>
pull/5625/head
Lukas Hoehl 1 week ago
parent 97a437d059
commit 5048de80f0
No known key found for this signature in database
GPG Key ID: 1DE2D4A728A1DFF1

@ -116,6 +116,9 @@ func (b *Builder) diff() (string, bool, error) {
diffErrs = append(diffErrs, err)
continue
}
if change.Action == ssa.SkippedAction {
output.WriteString(writeString(fmt.Sprintf("► %s skipped\n", change.Subject), bunt.Orange))
}
// if the object is a sops secret, we need to
// make sure we diff only if the keys are different

Loading…
Cancel
Save