From 184c0859abec887d5b89fba7f0eea9e1f2da3e9e Mon Sep 17 00:00:00 2001 From: Paul Adelsbach Date: Wed, 2 Sep 2026 21:07:19 -0700 Subject: [PATCH] Fix parse error in lint-workflows.yml --- .github/workflows/lint-workflows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-workflows.yml b/.github/workflows/lint-workflows.yml index 9f356256..96c67b4e 100644 --- a/.github/workflows/lint-workflows.yml +++ b/.github/workflows/lint-workflows.yml @@ -64,7 +64,8 @@ jobs: conc = wf.get('concurrency') or {} if not isinstance(conc, dict): continue - # Anything not literally false counts: "true"/${{ }} still cancel. + # Anything not literally false counts - a "true" string or + # an unresolved expression still cancels. cip = conc.get('cancel-in-progress', False) if cip is not False and str(cip).strip().lower() != 'false': bad.append(f"{path}: cancel-in-progress={cip!r} "