diff --git a/.github/FLAKY_CI_FAILURE_TEMPLATE.md b/.github/FLAKY_CI_FAILURE_TEMPLATE.md index c105f6928d27..a293cf4bcd8a 100644 --- a/.github/FLAKY_CI_FAILURE_TEMPLATE.md +++ b/.github/FLAKY_CI_FAILURE_TEMPLATE.md @@ -1,6 +1,6 @@ --- title: '[Flaky CI]: {{ env.JOB_NAME }} - {{ env.TEST_NAME }}' -labels: Tests +labels: Tests, Bug --- ### Flakiness Type diff --git a/scripts/report-ci-failures.mjs b/scripts/report-ci-failures.mjs index b407eac157c0..f57278e5a9d4 100644 --- a/scripts/report-ci-failures.mjs +++ b/scripts/report-ci-failures.mjs @@ -102,7 +102,7 @@ export default async function run({ github, context, core }) { repo, title, body: issueBody.trim(), - labels: ['Tests'], + labels: ['Tests', 'Bug'], }); core.info(`Created issue #${newIssue.data.number} for "${testName}" in ${jobName}`); }