Skip to content

Commit

Permalink
Fix release label prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
kwk committed Apr 26, 2024
1 parent 3aa970b commit 1507d2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion snapshot_manager/snapshot_manager/snapshot_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ def handle_labels(
arch_labels = list({f"arch/{err.arch}" for err in errors})
strategy_labels = [f"strategy/{self.config.build_strategy}"]
llvm_release = util.get_release_for_yyyymmdd(self.config.yyyymmdd)
other_labels: list[str] = [llvm_release]
other_labels: list[str] = [
f"{self.config.label_prefix_llvm_release}{llvm_release}"
]
if errors is None and len(errors) > 0:
other_labels.append("broken_snapshot_detected")

Expand Down

0 comments on commit 1507d2b

Please sign in to comment.