From 0f1a19a701ae44663b9b0156a1c7080ef706ee9e Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 07:53:29 +0000 Subject: [PATCH] style: format code with Gofumpt and Prettier This commit fixes the style issues introduced in e709f16 according to the output from Gofumpt and Prettier. Details: https://github.com/vdaas/vald/pull/2595 --- hack/actions/gen/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/actions/gen/main.go b/hack/actions/gen/main.go index 789f24613a..f5f31bf1c5 100644 --- a/hack/actions/gen/main.go +++ b/hack/actions/gen/main.go @@ -282,7 +282,7 @@ func generateWorkflowStruct(data *Data) Workflow { } func initializeData(data *Data) { - var pullRequestPaths = make([]string, 0) // TODO: ContainerTypeごとなどいろいろ条件分岐 + pullRequestPaths := make([]string, 0) // TODO: ContainerTypeごとなどいろいろ条件分岐 data.PushBranches = []string{"main", "release/v*.*", "!release/v*.*.*"} data.PushTags = []string{"*.*.*", "v*.*.*", "*.*.*-*", "v*.*.*-*"}