(event_name: &str)
| 4158 | } |
| 4159 | |
| 4160 | fn github_is_comment_event(event_name: &str) -> bool { |
| 4161 | matches!(event_name, "issue_comment" | "pull_request_review_comment") |
| 4162 | } |
| 4163 | |
| 4164 | fn github_comment_type(event_name: &str) -> Option<&'static str> { |
| 4165 | match event_name { |
no outgoing calls
no test coverage detected