Skip to content

Commit

Permalink
Merge pull request #1867 from Mark-Simulacrum/github-pr-openclose
Browse files Browse the repository at this point in the history
Fix sender login
  • Loading branch information
ehuss authored Dec 12, 2024
2 parents bfeafd5 + da17fc2 commit 0400514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/bot_pull_requests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(());
}

Expand Down

0 comments on commit 0400514

Please sign in to comment.