in issue-bot/src/routes.rs [245:252]
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let action = match self {
Self::Create => "create",
Self::Update => "update",
Self::Delete => "delete",
};
write!(f, "{}", action)
}