(event_name: &str)
| 4147 | } |
| 4148 | |
| 4149 | fn github_is_user_event(event_name: &str) -> bool { |
| 4150 | matches!( |
| 4151 | event_name, |
| 4152 | "issue_comment" | "pull_request_review_comment" | "issues" | "pull_request" |
| 4153 | ) |
| 4154 | } |
| 4155 | |
| 4156 | fn github_is_repo_event(event_name: &str) -> bool { |
| 4157 | matches!(event_name, "schedule" | "workflow_dispatch") |
no outgoing calls
no test coverage detected