We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bd88032 + 6f1dd0b commit bbbfc17Copy full SHA for bbbfc17
src/bors/handlers/mod.rs
@@ -71,6 +71,12 @@ pub async fn handle_bors_repository_event(
71
return Ok(());
72
}
73
74
+ // Also ignore comments made by homu
75
+ if comment.author.username == "bors" {
76
+ tracing::trace!("Ignoring comment {comment:?} because it was authored by homu");
77
+ return Ok(());
78
+ }
79
+
80
let span = tracing::info_span!(
81
"Comment",
82
pr = format!("{}#{}", comment.repository, comment.pr_number),
0 commit comments