From 98d60f176307c1c6a618d763d18b2b0712a89177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Catriel=20M=C3=BCller?= Date: Tue, 14 Apr 2026 00:14:28 -0300 Subject: [PATCH] fix: test workflow concurrency --- .github/workflows/test.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 729a88f2ab9..20660de63ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,15 +7,17 @@ on: pull_request: workflow_dispatch: -concurrency: - # Keep every run on main so cancelled checks do not pollute the default branch - # commit history. PRs and other branches still share a group and cancel stale runs. - group: ${{ case(github.ref == 'refs/heads/main', format('{0}-{1}', github.workflow, github.run_id), format('{0}-{1}', github.workflow, github.event.pull_request.number || github.ref)) }} - cancel-in-progress: true +# kilocode_change start +# concurrency: +# Keep every run on main so cancelled checks do not pollute the default branch +# commit history. PRs and other branches still share a group and cancel stale runs. +# group: ${{ case(github.ref == 'refs/heads/main', format('{0}-{1}', github.workflow, github.run_id), format('{0}-{1}', github.workflow, github.event.pull_request.number || github.ref)) }} +# cancel-in-progress: true +# kilocode_change end permissions: contents: read - # checks: write // kilocode_change + checks: write jobs: unit: