Skip to content

Commit faa252c

Browse files
ChristopherHXChristopherHX
authored andcommitted
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 <christopher.homberger@web.de> Co-committed-by: Christopher Homberger <christopher.homberger@web.de>
1 parent 8505f73 commit faa252c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cmd/root.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func Execute(ctx context.Context, version string) {
5555

5656
func createRootCommand(ctx context.Context, input *Input, version string) *cobra.Command {
5757
rootCmd := &cobra.Command{
58-
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\"",
58+
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",
5959
Short: "Run GitHub actions locally by specifying the event name (e.g. `push`) or an action name directly.",
6060
Args: cobra.MaximumNArgs(1),
6161
RunE: newRunCommand(ctx, input),
@@ -171,6 +171,7 @@ func bugReport(ctx context.Context, version string) error {
171171
}
172172

173173
report := sprintf("act version:", version)
174+
report += sprintf("Variant:", "https://gitea.com/actions-oss/act-cli / https://github.com/actions-oss/act-cli")
174175
report += sprintf("GOOS:", runtime.GOOS)
175176
report += sprintf("GOARCH:", runtime.GOARCH)
176177
report += sprintf("NumCPU:", fmt.Sprint(runtime.NumCPU()))

0 commit comments

Comments
 (0)