let lychee handle advanced globbing (#662)

The workflow does not quote `**/*.md`, so bash will handle the globbing, which does not support the recursive pattern `**`. 

After quoting, bash will pass `**/*.md` to lychee, which will find all markdown files in the repository.
pull/677/head
ian 2 years ago committed by GitHub
parent 21c4c8f728
commit ea96efcdb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,7 +17,7 @@ jobs:
#env:
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
args: '--verbose --max-retries 4 --no-progress **/*.md'
args: '--verbose --max-retries 4 --no-progress "**/*.md"'
- name: Create Issue From File
uses: peter-evans/create-issue-from-file@v2

Loading…
Cancel
Save