Skip to content
Merged
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
9 changes: 9 additions & 0 deletions pkg/workflow/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,15 @@ func (c *Compiler) CompileWorkflowData(workflowData *WorkflowData, markdownPath
})
return errors.New(formattedErr)
}

// Print informational message if "projects" toolset is used
for _, toolset := range enabledToolsets {
if toolset == "projects" {
fmt.Fprintln(os.Stderr, console.FormatInfoMessage("The 'projects' toolset requires a GitHub token with organization Projects permissions."))
fmt.Fprintln(os.Stderr, console.FormatInfoMessage("See: https://githubnext.github.io/gh-aw/reference/tokens/#gh_aw_project_github_token-github-projects-v2"))
break
}
}
}

// Validate permissions for agentic-workflows tool
Expand Down
Loading