diff --git a/src/handlers/bot_pull_requests.rs b/src/handlers/bot_pull_requests.rs index 02e4ec2e..5ad1614d 100644 --- a/src/handlers/bot_pull_requests.rs +++ b/src/handlers/bot_pull_requests.rs @@ -21,7 +21,7 @@ pub(crate) async fn handle(ctx: &Context, event: &Event) -> anyhow::Result<()> { // If it's not the github-actions bot, we don't expect this handler to be needed. Skip the // event. - if event.sender.login != "app/github-actions" { + if event.sender.login != "github-actions[bot]" { return Ok(()); }