From 013e8c1a33b76803f133c6bc01e17d145e04fc7c Mon Sep 17 00:00:00 2001 From: Bryce Boe Date: Wed, 12 Aug 2026 08:48:17 -0700 Subject: [PATCH] Remove concurrency from the reusable lint workflow Declaring workflow-level concurrency in a reusable workflow made every workflow_call of it fail at startup: no jobs ran, no logs were produced, and no check run was created, so the failure was invisible in PR checks and never blocked a merge. actionlint and zizmor have therefore not run in any caller repository since 2026-06-15, when the callers moved to v1.6.0. Callers already declare their own concurrency group, so nothing is lost. Verified by pointing CodeSorter's caller at this change: the run started and both jobs completed, where the same caller had produced a startup failure. --- .github/workflows/lint.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 174d322..be2dd0c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,3 @@ -concurrency: - group: lint-${{ github.ref }} - cancel-in-progress: true jobs: actionlint: name: actionlint