Skip to content

Commit 0400514

Browse files
authored
Merge pull request #1867 from Mark-Simulacrum/github-pr-openclose
Fix sender login
2 parents bfeafd5 + da17fc2 commit 0400514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/bot_pull_requests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub(crate) async fn handle(ctx: &Context, event: &Event) -> anyhow::Result<()> {
2121

2222
// If it's not the github-actions bot, we don't expect this handler to be needed. Skip the
2323
// event.
24-
if event.sender.login != "app/github-actions" {
24+
if event.sender.login != "github-actions[bot]" {
2525
return Ok(());
2626
}
2727

0 commit comments

Comments
 (0)