(conclusion string)
| 396 | } |
| 397 | |
| 398 | func completedCheckRunNode(conclusion string) string { |
| 399 | return fmt.Sprintf(` |
| 400 | { |
| 401 | "__typename": "CheckRun", |
| 402 | "status": "COMPLETED", |
| 403 | "conclusion": "%s" |
| 404 | }`, conclusion) |
| 405 | } |
| 406 | |
| 407 | func statusContextNode(state string) string { |
| 408 | return fmt.Sprintf(` |
no outgoing calls
no test coverage detected