From 8caa08207abefedcc66edfc2b7bac61d3c84ae03 Mon Sep 17 00:00:00 2001 From: Geoffrey Date: Tue, 30 Jun 2026 20:48:19 +0000 Subject: [PATCH] go: upgrade to Go 1.26.4 and run go fix ./... --- lib/batches/batch_spec.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/batches/batch_spec.go b/lib/batches/batch_spec.go index 30ef50d4a9..c1512430c4 100644 --- a/lib/batches/batch_spec.go +++ b/lib/batches/batch_spec.go @@ -45,8 +45,8 @@ type BatchSpec struct { // Hooks declares side-effect actions to run at well-defined changeset // lifecycle events. Only allowed when Version is 3. type ChangesetHooks struct { - OnCIFailure ChangesetHookAction `json:"onCIFailure,omitempty" yaml:"onCIFailure,omitempty"` - OnMergeConflict ChangesetHookAction `json:"onMergeConflict,omitempty" yaml:"onMergeConflict,omitempty"` + OnCIFailure ChangesetHookAction `json:"onCIFailure" yaml:"onCIFailure,omitempty"` + OnMergeConflict ChangesetHookAction `json:"onMergeConflict" yaml:"onMergeConflict,omitempty"` } // HookAction is a single action attached to a changeset lifecycle event.