From 06d0bcb2869a56968456e3f6cacbf20fb7f0253c Mon Sep 17 00:00:00 2001 From: Gregory Luneau Date: Thu, 17 Aug 2023 13:47:47 -0500 Subject: [PATCH] Update broken-links.yml to omit multiple paths (#906) Seems like the documentation support this repeated option https://lychee.cli.rs/#/usage/cli?id=repeating-options --- .github/workflows/broken-links.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/broken-links.yml b/.github/workflows/broken-links.yml index bb38989bc..1a4eab896 100644 --- a/.github/workflows/broken-links.yml +++ b/.github/workflows/broken-links.yml @@ -22,7 +22,7 @@ jobs: env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} with: - args: --verbose --exclude-path "./node_modules/" "./dist/spa/" "./tests/metamask_wallet/" "./tests/polkadot_wallet/" "./**/*.js" "./**/*.ts" "./**/*.html" "./**/*.scss" "./**/*.json" "./**/*.md" + args: --verbose --exclude-path "./node_modules/" --exclude-path "./dist/spa/" --exclude-path "./tests/metamask_wallet/" --exclude-path "./tests/polkadot_wallet/" "./**/*.js" "./**/*.ts" "./**/*.html" "./**/*.scss" "./**/*.json" "./**/*.md" - name: Create Issue From File if: env.lychee_exit_code != 0