Skip to content

Commit 9c0552c

Browse files
committed
Make check for marker teams more general
1 parent 00437fc commit 9c0552c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/teams.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ impl RustTeams {
278278
}
279279
}
280280
for team in &self.teams {
281-
if team.name == "all" || team.name == "alumni" || team.name == "leads" {
281+
if team.kind == TeamKind::MarkerTeam && team.website_data.is_none() {
282282
continue;
283283
}
284284

0 commit comments

Comments
 (0)