From 83d426c3c04baba957c4aa7774990563e125f5d4 Mon Sep 17 00:00:00 2001 From: Lukas Hoehl Date: Wed, 12 Nov 2025 16:00:47 +0100 Subject: [PATCH] diff: report if object is skipped Signed-off-by: Lukas Hoehl (cherry picked from commit 5048de80f0cd3e19f6e47c928262298964122455) --- internal/build/diff.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/build/diff.go b/internal/build/diff.go index b1218622..4485dd0f 100644 --- a/internal/build/diff.go +++ b/internal/build/diff.go @@ -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