From 4c460df0a4edd91df2429384d1d5e97bfc262dff Mon Sep 17 00:00:00 2001 From: David Sanders Date: Thu, 3 Jul 2025 05:42:04 -0700 Subject: [PATCH] ci: fix audit workflow alerting on stale results (#47643) --- .github/workflows/audit-branch-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/audit-branch-ci.yml b/.github/workflows/audit-branch-ci.yml index 36ecf54230..470bc9ed7a 100644 --- a/.github/workflows/audit-branch-ci.yml +++ b/.github/workflows/audit-branch-ci.yml @@ -101,7 +101,6 @@ jobs: } if (runsWithErrors.length > 0) { - core.setOutput('errorsFound', true); core.summary.addHeading('⚠️ Runs with Errors'); core.summary.addTable([ [ @@ -128,6 +127,7 @@ jobs: // Set this as failed so it's easy to scan runs to find failures if (runsWithErrors.find((run) => !run.isStale)) { + core.setOutput('errorsFound', true); process.exitCode = 1; } } else {