From 87aec7c46f7b332f93067936cc83361995835ee3 Mon Sep 17 00:00:00 2001 From: John Stachurski Date: Thu, 4 Jun 2026 17:59:29 +1000 Subject: [PATCH] FIX: quote glob in linkcheck.yml so the workflow file parses `args: **/*.html` is invalid YAML (a plain scalar cannot start with `*`, the alias indicator), so GitHub has been logging a 0-second "workflow file issue" failure for this file on every push to every branch since #249. Quoting the glob restores a parseable workflow; the lychee invocation itself is unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/linkcheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index 4d736e77..ffb508b5 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -22,7 +22,7 @@ jobs: with: fail: false # Configuration is now specified in lychee.toml file - args: **/*.html + args: "**/*.html" - name: Create Issue From File if: steps.lychee.outputs.exit_code != 0 uses: peter-evans/create-issue-from-file@v5