IsHelpCommandEnabled returns true when the builtin centralized /help command handler should be enabled. The default is enabled.
()
| 208 | // IsHelpCommandEnabled returns true when the builtin centralized /help command |
| 209 | // handler should be enabled. The default is enabled. |
| 210 | func (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 |
no outgoing calls