From 98bfd8f1576b5ece31f07a8b415111cf358b0ae4 Mon Sep 17 00:00:00 2001 From: Nicolas Hrubec Date: Wed, 17 Jun 2026 09:42:48 +0200 Subject: [PATCH] fix(ci): Do not apply Bug label to flaky test issues Flaky test failures detected on develop are not bugs in the SDK, so the auto-created issues should not carry the Bug label. Co-Authored-By: Claude Opus 4.8 (1M context) --- scripts/report-ci-failures.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/report-ci-failures.mjs b/scripts/report-ci-failures.mjs index a6fa00fee44f..ccd7f711ef84 100644 --- a/scripts/report-ci-failures.mjs +++ b/scripts/report-ci-failures.mjs @@ -130,7 +130,7 @@ export default async function run({ github, context, core }) { repo, title, body: issueBody.trim(), - labels: ['Tests', 'Bug', 'Flaky Test'], + labels: ['Tests', 'Flaky Test'], }); core.info(`Created issue #${newIssue.data.number} for "${testName}" in ${normalizedJobName}`); }