Skip to content

Commit 621e89f

Browse files
committed
Add bots needed for rust-lang/rust
1 parent f9e255f commit 621e89f

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

rust_team_data/src/v1.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,9 @@ pub enum Bot {
205205
Rustbot,
206206
RustTimer,
207207
Rfcbot,
208+
Craterbot,
209+
Glacierbot,
210+
LogAnalyzer,
208211
Renovate,
209212
}
210213

src/schema.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -843,6 +843,9 @@ pub(crate) enum Bot {
843843
Rustbot,
844844
RustTimer,
845845
Rfcbot,
846+
Craterbot,
847+
Glacierbot,
848+
LogAnalyzer,
846849
Renovate,
847850
}
848851

src/static_api.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ impl<'a> Generator<'a> {
8686
Bot::RustTimer => v1::Bot::RustTimer,
8787
Bot::Rustbot => v1::Bot::Rustbot,
8888
Bot::Rfcbot => v1::Bot::Rfcbot,
89+
Bot::Craterbot => v1::Bot::Craterbot,
90+
Bot::Glacierbot => v1::Bot::Glacierbot,
91+
Bot::LogAnalyzer => v1::Bot::LogAnalyzer,
8992
Bot::Renovate => v1::Bot::Renovate,
9093
})
9194
.collect(),

sync-team/src/github/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,9 @@ fn bot_user_name(bot: &Bot) -> Option<&str> {
484484
Bot::RustTimer => Some("rust-timer"),
485485
Bot::Rustbot => Some("rustbot"),
486486
Bot::Rfcbot => Some("rfcbot"),
487+
Bot::Craterbot => Some("craterbot"),
488+
Bot::Glacierbot => Some("rust-lang-glacier-bot"),
489+
Bot::LogAnalyzer => Some("rust-log-analyzer"),
487490
Bot::Renovate => None,
488491
}
489492
}

0 commit comments

Comments
 (0)