Skip to content

Commit 4d9e9dc

Browse files
jstacclaude
andauthored
FIX: quote glob in linkcheck.yml so the workflow file parses (#333)
`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) <noreply@anthropic.com>
1 parent b0d5f76 commit 4d9e9dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/linkcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
fail: false
2424
# Configuration is now specified in lychee.toml file
25-
args: **/*.html
25+
args: "**/*.html"
2626
- name: Create Issue From File
2727
if: steps.lychee.outputs.exit_code != 0
2828
uses: peter-evans/create-issue-from-file@v5

0 commit comments

Comments
 (0)