fix: tag bunnative dependency jobs as bun instead of nativets (#8045)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ruben Fiszel
2026-02-21 21:59:48 +01:00
committed by GitHub
parent 088b757768
commit 4e747faded

View File

@@ -5321,7 +5321,11 @@ async fn push_inner<'c, 'd>(
.as_ref()
.map(|x| {
let tag_lang = if x == &ScriptLang::Bunnative {
ScriptLang::Nativets.as_str()
if job_kind == JobKind::Dependencies {
ScriptLang::Bun.as_str()
} else {
ScriptLang::Nativets.as_str()
}
} else {
x.as_str()
};