Skip to content

Commit b1eaf03

Browse files
committed
fix(ci): use full check-mode for trunk in workflow_call
1 parent 5ae19d3 commit b1eaf03

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

controllers/reconciler.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,11 @@ func (r *Reconciler[T]) persistReconcileState(ctx context.Context, orig v1alpha1
249249

250250
// Capture annotation changes before Status().Update because it may mutate obj metadata.
251251
annotations := map[string]any{}
252-
for _, key := range []string{processedGenerationAnnotation, instanceIsRunningAnnotation} {
252+
for _, key := range []string{
253+
processedGenerationAnnotation,
254+
instanceIsRunningAnnotation,
255+
kafkaSchemaAppliedFingerprintAnnotation,
256+
} {
253257
origValue, origOk := orig.GetAnnotations()[key]
254258
value, ok := obj.GetAnnotations()[key]
255259
if origOk == ok && origValue == value {

0 commit comments

Comments
 (0)