We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fad3d1f + d978a24 commit 0bd2fe0Copy full SHA for 0bd2fe0
src/handlers/mentions.rs
@@ -43,7 +43,10 @@ pub(super) async fn parse_input(
43
}
44
45
// Don't ping on rollups or draft PRs.
46
- if event.issue.title.starts_with("Rollup of") || event.issue.draft {
+ if event.issue.title.starts_with("Rollup of")
47
+ || event.issue.draft
48
+ || event.issue.title.contains("[beta] backport")
49
+ {
50
return Ok(None);
51
52
0 commit comments