Skip to content

Commit b1dabc6

Browse files
authored
Fix CLI terminology: standardize on "agentic workflows" (#3696)
1 parent c46f7c1 commit b1dabc6

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
module github.com/githubnext/gh-aw-workflows-deps
2-
go 1.21
32

4-
require (
5-
)
3+
go 1.21

cmd/gh-aw/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ var removeCmd = &cobra.Command{
8585

8686
var enableCmd = &cobra.Command{
8787
Use: "enable [workflow-name]...",
88-
Short: "Enable natural language action workflows",
88+
Short: "Enable agentic workflows",
8989
Long: `Enable one or more workflows by name, or all workflows if no names are provided.
9090
9191
Examples:
@@ -102,7 +102,7 @@ Examples:
102102

103103
var disableCmd = &cobra.Command{
104104
Use: "disable [workflow-name]...",
105-
Short: "Disable natural language action workflows and cancel any in-progress runs",
105+
Short: "Disable agentic workflows and cancel any in-progress runs",
106106
Long: `Disable one or more workflows by name, or all workflows if no names are provided.
107107
108108
Examples:

pkg/cli/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
func NewStatusCommand() *cobra.Command {
1313
cmd := &cobra.Command{
1414
Use: "status [pattern]",
15-
Short: "Show status of natural language action files and workflows",
15+
Short: "Show status of agentic workflows",
1616
Run: func(cmd *cobra.Command, args []string) {
1717
var pattern string
1818
if len(args) > 0 {

0 commit comments

Comments
 (0)