Skip to content

Commit d978a24

Browse files
Also silence mentions on beta-backport PRs
1 parent fad3d1f commit d978a24

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/handlers/mentions.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ pub(super) async fn parse_input(
4343
}
4444

4545
// Don't ping on rollups or draft PRs.
46-
if event.issue.title.starts_with("Rollup of") || event.issue.draft {
46+
if event.issue.title.starts_with("Rollup of")
47+
|| event.issue.draft
48+
|| event.issue.title.contains("[beta] backport")
49+
{
4750
return Ok(None);
4851
}
4952

0 commit comments

Comments
 (0)