From 1b0bc6ce528e1266f3f06c6c276f2d593a939fee Mon Sep 17 00:00:00 2001 From: ChristopherHX Date: Wed, 21 Jan 2026 13:40:09 +0100 Subject: [PATCH 1/2] fix: parsing --runnergroup from cli --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d2edfbb..dd12452 100644 --- a/main.go +++ b/main.go @@ -305,7 +305,7 @@ func main() { cmdConfigure.Flags().BoolVar(&config.NoDefaultLabels, "no-default-labels", false, "do not automatically add the following system labels: self-hosted, "+runtime.GOOS+" and "+runtime.GOARCH) cmdConfigure.Flags().StringSliceVar(&config.SystemLabels, "system-labels", []string{}, "custom system labels for your new runner") - cmdConfigure.Flags().StringVar(&config.Token, "runnergroup", "", "name of the runner group to use will ask if more than one is available") + cmdConfigure.Flags().StringVar(&config.RunnerGroup, "runnergroup", "", "name of the runner group to use will ask if more than one is available") cmdConfigure.Flags().BoolVar(&config.Unattended, "unattended", false, "suppress shell prompts during configure") cmdConfigure.Flags().BoolVar(&config.Trace, "trace", false, "trace http communication with the github action service") cmdConfigure.Flags().BoolVar(&config.Ephemeral, "ephemeral", false, From f8ec1d5a0dca6962482675689492e9ace0d32668 Mon Sep 17 00:00:00 2001 From: ChristopherHX Date: Wed, 21 Jan 2026 13:43:17 +0100 Subject: [PATCH 2/2] linter --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index dd12452..4f7aa31 100644 --- a/main.go +++ b/main.go @@ -305,7 +305,8 @@ func main() { cmdConfigure.Flags().BoolVar(&config.NoDefaultLabels, "no-default-labels", false, "do not automatically add the following system labels: self-hosted, "+runtime.GOOS+" and "+runtime.GOARCH) cmdConfigure.Flags().StringSliceVar(&config.SystemLabels, "system-labels", []string{}, "custom system labels for your new runner") - cmdConfigure.Flags().StringVar(&config.RunnerGroup, "runnergroup", "", "name of the runner group to use will ask if more than one is available") + cmdConfigure.Flags().StringVar(&config.RunnerGroup, "runnergroup", "", + "name of the runner group to use will ask if more than one is available") cmdConfigure.Flags().BoolVar(&config.Unattended, "unattended", false, "suppress shell prompts during configure") cmdConfigure.Flags().BoolVar(&config.Trace, "trace", false, "trace http communication with the github action service") cmdConfigure.Flags().BoolVar(&config.Ephemeral, "ephemeral", false,