Update GHA 429 notice wording

Co-authored-by: Graham Christensen <graham@grahamc.com>
This commit is contained in:
Cole Helbling 2025-01-16 07:32:20 -08:00 committed by GitHub
parent b9f89bd546
commit 003f106338
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -628,12 +628,13 @@ impl AtomicCircuitBreaker for AtomicBool {
} = e } = e
{ {
tracing::info!("Disabling GitHub Actions Cache due to 429: Too Many Requests"); tracing::info!("Disabling GitHub Actions Cache due to 429: Too Many Requests");
let title = "Magic Nix Cache was rate-limited by GitHub Actions.";
let msg = "\ let msg = "\
Magic Nix Cache has exceeded GitHub Actions Cache's rate limit. \ Turn Magic Nix Cache into a cache for your whole team. \
Save more time and seamlessly share the builds across your team with FlakeHub Cache. \ Move beyond GitHub's limits, save time, and share builds outside CI with FlakeHub Cache. \
See: https://flakehub.com/pricing\ See: https://dtr.mn/github-cache-limits\
"; ";
println!("::notice::{msg}"); println!("::notice title={title}::{msg}");
self.store(true, Ordering::Relaxed); self.store(true, Ordering::Relaxed);
} }
} }