Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module github.com/githubnext/gh-aw-workflows-deps
go 1.21

require (
)
go 1.21
Copy link

Copilot AI Nov 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The go.mod file changes appear unrelated to the terminology standardization. The removal of the empty require block seems to be unintentional formatting changes that should be excluded from this PR to maintain focus on the terminology updates.

Suggested change
go 1.21
go 1.21
require (
)

Copilot uses AI. Check for mistakes.
4 changes: 2 additions & 2 deletions cmd/gh-aw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ var removeCmd = &cobra.Command{

var enableCmd = &cobra.Command{
Use: "enable [workflow-name]...",
Short: "Enable natural language action workflows",
Short: "Enable agentic workflows",
Long: `Enable one or more workflows by name, or all workflows if no names are provided.

Examples:
Expand All @@ -102,7 +102,7 @@ Examples:

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

Examples:
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
func NewStatusCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "status [pattern]",
Short: "Show status of natural language action files and workflows",
Short: "Show status of agentic workflows",
Run: func(cmd *cobra.Command, args []string) {
var pattern string
if len(args) > 0 {
Expand Down
Loading