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()))