From 4522562a1200f7392a9ce98c0d3e554278eb638e Mon Sep 17 00:00:00 2001 From: Marcus Weiner Date: Sat, 6 Jul 2024 16:12:05 +0200 Subject: [PATCH] Match workflow file default to name used in scaffold (#48) --- pkg/speculative/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/speculative/run.go b/pkg/speculative/run.go index 838a872..b22d5a1 100644 --- a/pkg/speculative/run.go +++ b/pkg/speculative/run.go @@ -31,7 +31,7 @@ func NewCommand() *cobra.Command { cmd.Flags().StringVar(&owner, "github-owner", "", "Repository owner") cmd.Flags().StringVar(&repo, "github-repo", "", "Repository name") - cmd.Flags().StringVar(&workflowFilename, "workflow-file", "preview.yaml", "Name of the workflow file to run for previews") + cmd.Flags().StringVar(&workflowFilename, "workflow-file", "tf-preview.yaml", "Name of the workflow file to run for previews") return cmd }