MCPcopy Create free account
hub / github.com/github/gh-aw / IsHelpCommandEnabled

Method IsHelpCommandEnabled

pkg/workflow/repo_config.go:210–215  ·  view source on GitHub ↗

IsHelpCommandEnabled returns true when the builtin centralized /help command handler should be enabled. The default is enabled.

()

Source from the content-addressed store, hash-verified

208// IsHelpCommandEnabled returns true when the builtin centralized /help command
209// handler should be enabled. The default is enabled.
210func (r *RepoConfig) IsHelpCommandEnabled() bool {
211 if r == nil || r.HelpCommand == nil {
212 return true
213 }
214 return *r.HelpCommand
215}
216
217// LoadRepoConfig loads and validates .github/workflows/aw.json from the
218// provided git root directory. The function returns a non-nil *RepoConfig

Calls

no outgoing calls