From faa252c8e9ef88f2f3d80fdbc0b91496885da9d6 Mon Sep 17 00:00:00 2001 From: Christopher Homberger Date: Sat, 14 Feb 2026 16:16:53 +0000 Subject: [PATCH] fix: add branding (#33) Closes https://gitea.com/actions-oss/act-cli/issues/31 Reviewed-on: https://gitea.com/actions-oss/act-cli/pulls/33 Co-authored-by: Christopher Homberger Co-committed-by: Christopher Homberger --- cmd/root.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 0a93ac67..16320367 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -55,7 +55,7 @@ func Execute(ctx context.Context, version string) { func createRootCommand(ctx context.Context, input *Input, version string) *cobra.Command { rootCmd := &cobra.Command{ - Use: "act [event name to run] [flags]\n\nIf no event name passed, will default to \"on: push\"\nIf actions handles only one event it will be used as default instead of \"on: push\"", + Use: "act [event name to run] [flags]\n\nIf no event name passed, will default to \"on: push\"\nIf actions handles only one event it will be used as default instead of \"on: push\"\nSee documentation at: https://gitea.com/actions-oss/act-cli or https://github.com/actions-oss/act-cli", Short: "Run GitHub actions locally by specifying the event name (e.g. `push`) or an action name directly.", Args: cobra.MaximumNArgs(1), RunE: newRunCommand(ctx, input), @@ -171,6 +171,7 @@ func bugReport(ctx context.Context, version string) error { } report := sprintf("act version:", version) + report += sprintf("Variant:", "https://gitea.com/actions-oss/act-cli / https://github.com/actions-oss/act-cli") report += sprintf("GOOS:", runtime.GOOS) report += sprintf("GOARCH:", runtime.GOARCH) report += sprintf("NumCPU:", fmt.Sprint(runtime.NumCPU()))