evalCreateDiscussion checks whether a discussion received replies.
(item CreatedItemReport, repoOverride string)
| 59 | |
| 60 | // evalCreateDiscussion checks whether a discussion received replies. |
| 61 | func evalCreateDiscussion(item CreatedItemReport, repoOverride string) OutcomeReport { |
| 62 | return OutcomeReport{ |
| 63 | Type: item.Type, |
| 64 | ObjectURL: item.URL, |
| 65 | Repo: resolveItemRepo(item, repoOverride), |
| 66 | Result: OutcomePending, |
| 67 | Detail: "discussion outcome check requires GraphQL (not yet implemented)", |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | // evalHideComment checks whether a hidden comment is still hidden. |
| 72 | func evalHideComment(item CreatedItemReport, repoOverride string) OutcomeReport { |
nothing calls this directly
no test coverage detected