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