From 3ea7fc73397032e71fb20d27084f4552211bb1f6 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Sat, 28 Jun 2025 17:19:15 -0400 Subject: [PATCH] attempt to calm down restarter job --- .github/workflows/libcxx-restart-preempted-jobs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/libcxx-restart-preempted-jobs.yaml b/.github/workflows/libcxx-restart-preempted-jobs.yaml index 6b31cdaae7c2..06ac6a2b7291 100644 --- a/.github/workflows/libcxx-restart-preempted-jobs.yaml +++ b/.github/workflows/libcxx-restart-preempted-jobs.yaml @@ -36,7 +36,7 @@ jobs: // the "higher priority" message comes from github canceling a workflow because the user updated the change. // And the "exit code 1" message indicates a genuine failure. const failure_regex = /(Process completed with exit code 1.)|(Canceling since a higher priority waiting request)|(The run was canceled by)/ - const preemption_regex = /(The runner has received a shutdown signal)|(The operation was canceled)/ + const preemption_regex = /(The runner has received a shutdown signal)/ const wf_run = context.payload.workflow_run core.notice(`Running on "${wf_run.display_title}" by @${wf_run.actor.login} (event: ${wf_run.event})\nWorkflow run URL: ${wf_run.html_url}`)