From 57e3cbee274fb51fcd6e1ca3353cb4dbb4300e9b Mon Sep 17 00:00:00 2001 From: Sean Broderick Date: Mon, 9 May 2022 23:14:36 -0400 Subject: [PATCH] fix lychee syntax per project docs Simplify args quoting per lychee docs -- https://github.com/marketplace/actions/lychee-broken-link-checker --- .github/workflows/lychee.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lychee.yml b/.github/workflows/lychee.yml index 3ce1cfa..102f0c7 100644 --- a/.github/workflows/lychee.yml +++ b/.github/workflows/lychee.yml @@ -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