You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -795,7 +795,7 @@ Use "` + string(constants.CLIExtensionPrefix) + ` help all" to show help for all
795
795
runCmd.Flags().Bool("auto-merge-prs", false, "Auto-merge any pull requests created during the workflow execution")
796
796
runCmd.Flags().StringArrayP("raw-field", "F", []string{}, "Add a string parameter in key=value format (can be used multiple times)")
797
797
runCmd.Flags().Bool("push", false, "Commit and push workflow files (including transitive imports) before running")
798
-
runCmd.Flags().Bool("dry-run", false, "Validate workflow without actually triggering execution on GitHub Actions")
798
+
runCmd.Flags().Bool("dry-run", false, "Preview workflow execution without triggering runs on GitHub Actions")
799
799
runCmd.Flags().BoolP("json", "j", false, "Output results in JSON format")
800
800
runCmd.Flags().Bool("approve", false, "Approve all safe update changes. When strict mode is active (the default), the compiler emits warnings for new restricted secrets or unapproved action additions/removals not present in the existing gh-aw-manifest. Use this flag to approve and skip safe update enforcement")
require.NotNil(t, cmd, "NewAddCommand should not return nil")
29
29
assert.Equal(t, "add <workflow>...", cmd.Use, "Command use should be 'add <workflow>...'")
30
-
assert.Equal(t, "Add agentic workflows from repositories or local files to .github/workflows", cmd.Short, "Command short description should match")
30
+
assert.Equal(t, "Add agentic workflows from repositories, local files, or URLs to .github/workflows", cmd.Short, "Command short description should match")
31
31
assert.Contains(t, cmd.Long, "Add one or more agentic workflows", "Command long description should contain expected text")
0 commit comments