Skip to content

Commit 13ece7c

Browse files
Merge pull request #1631 from ehuss/mentions-rollup
Don't post mentions on rollups.
2 parents 5da1075 + 7e1312b commit 13ece7c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/handlers/mentions.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ pub(super) async fn parse_input(
4242
return Ok(None);
4343
}
4444

45+
// Don't ping on rollups.
46+
if event.issue.title.starts_with("Rollup of") {
47+
return Ok(None);
48+
}
49+
4550
if let Some(diff) = event
4651
.issue
4752
.diff(&ctx.github)

0 commit comments

Comments
 (0)