in issue-bot/src/routes.rs [129:135]
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let webhook_type = match self {
Self::Issue(_) => "issue",
Self::IssueComment(_) => "issue comment",
};
write!(f, "{}", webhook_type)
}