From 2d580ca0940300cbe9f0bb9942f1fc05e83ec2a0 Mon Sep 17 00:00:00 2001 From: s-b-e-n-s-o-n <80784472+s-b-e-n-s-o-n@users.noreply.github.com> Date: Mon, 9 Mar 2026 17:51:21 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(ci):=20retry=20qlty=20on=20t?= =?UTF-8?q?imeout=20and=20increase=20limit=20to=208=20minutes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit retry_on was set to "error" which only retries on non-zero exit codes, not on timeouts. Changed to "any" so the 5-minute timeout actually triggers a retry. Also bumped timeout from 5 to 8 minutes since qlty regularly takes longer in CI. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88bebdf1..27c8cac0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,9 +78,9 @@ jobs: - name: Qlty check (all plugins) uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2 with: - timeout_minutes: 5 + timeout_minutes: 8 max_attempts: 3 - retry_on: error + retry_on: any command: qlty check --all --no-progress test: