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

Method parseReportIncompleteConfig

pkg/workflow/missing_issue_reporting.go:53–55  ·  view source on GitHub ↗

parseReportIncompleteConfig handles report_incomplete configuration.

(outputMap map[string]any)

Source from the content-addressed store, hash-verified

51
52// parseReportIncompleteConfig handles report_incomplete configuration.
53func (c *Compiler) parseReportIncompleteConfig(outputMap map[string]any) *ReportIncompleteConfig {
54 return c.parseIssueReportingConfig(outputMap, "report-incomplete", "[incomplete]", true, false, reportIncompleteLog)
55}
56
57func (c *Compiler) parseIssueReportingConfig(outputMap map[string]any, yamlKey, defaultTitle string, defaultCreateIssue bool, parseReportAsFailure bool, debugLog *logger.Logger) *IssueReportingConfig {
58 configData, exists := outputMap[yamlKey]

Calls 1