evalHideComment checks whether a hidden comment is still hidden.
(item CreatedItemReport, repoOverride string)
| 70 | |
| 71 | // evalHideComment checks whether a hidden comment is still hidden. |
| 72 | func evalHideComment(item CreatedItemReport, repoOverride string) OutcomeReport { |
| 73 | return OutcomeReport{ |
| 74 | Type: item.Type, |
| 75 | ObjectURL: item.URL, |
| 76 | Repo: resolveItemRepo(item, repoOverride), |
| 77 | Result: OutcomePending, |
| 78 | Detail: "hidden comment check requires GraphQL (not yet implemented)", |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | // evalAssignMilestone checks whether a milestone assignment stuck. |
| 83 | func evalAssignMilestone(item CreatedItemReport, repoOverride string) OutcomeReport { |
nothing calls this directly
no test coverage detected