feat: v0.3.0d — add PR checks, iostreams, aliases, and broad enhancements
Add PR checks command, iostreams/text packages for colored table output,
top-level run/workflow aliases matching gh CLI structure. Enhance actions,
issues, PRs, releases, repos, labels, milestones, and wiki commands with
improved flags, JSON output, and error handling.
2026-03-23 11:42:44 -06:00
|
|
|
package cmd
|
|
|
|
|
|
2026-05-02 15:56:58 -06:00
|
|
|
// Top-level aliases for "actions run" and "actions workflow" — matches gh
|
|
|
|
|
// CLI's ergonomics so users can type `fj run list` and `fj workflow list`
|
|
|
|
|
// instead of `fj actions run list`.
|
|
|
|
|
//
|
|
|
|
|
// Both trees are built from the same factory functions defined in
|
|
|
|
|
// `cmd/actions.go` (newRunCmd / newWorkflowCmd), which means flags and
|
|
|
|
|
// help text are guaranteed identical between the two paths. Previously
|
|
|
|
|
// this file rebuilt parallel trees by hand and silently drifted (the
|
|
|
|
|
// `--json` Bool/string mismatch was the symptom that surfaced).
|
feat: v0.3.0d — add PR checks, iostreams, aliases, and broad enhancements
Add PR checks command, iostreams/text packages for colored table output,
top-level run/workflow aliases matching gh CLI structure. Enhance actions,
issues, PRs, releases, repos, labels, milestones, and wiki commands with
improved flags, JSON output, and error handling.
2026-03-23 11:42:44 -06:00
|
|
|
|
|
|
|
|
func init() {
|
2026-05-02 15:56:58 -06:00
|
|
|
rootCmd.AddCommand(newRunCmd(" (alias for 'actions run')"))
|
|
|
|
|
rootCmd.AddCommand(newWorkflowCmd(" (alias for 'actions workflow')"))
|
feat: v0.3.0d — add PR checks, iostreams, aliases, and broad enhancements
Add PR checks command, iostreams/text packages for colored table output,
top-level run/workflow aliases matching gh CLI structure. Enhance actions,
issues, PRs, releases, repos, labels, milestones, and wiki commands with
improved flags, JSON output, and error handling.
2026-03-23 11:42:44 -06:00
|
|
|
}
|