diff --git a/.github/workflows/link-schedule.yml b/.github/workflows/link-schedule.yml index dbf8c325f3..92ae175a4f 100644 --- a/.github/workflows/link-schedule.yml +++ b/.github/workflows/link-schedule.yml @@ -29,7 +29,6 @@ jobs: - name: Link Checker uses: lycheeverse/lychee-action@v1.5.0 with: - fail: true # For parameter description, see https://github.com/lycheeverse/lychee#commandline-parameters # -E, --exclude-all-private Exclude all private IPs from checking. # -i, --insecure Proceed for server connections considered insecure (invalid TLS) @@ -40,6 +39,13 @@ jobs: # docs/.vitepress/dist the site directory to check # ./*.md all markdown files in the root directory - args: -E -i -n -t 45 --max-concurrency 64 -a 429,401 -- 'docs/.vitepress/dist' '*.md' + args: -E -i -n -t 45 --max-concurrency 64 -a 429,401,403 -- 'docs/.vitepress/dist' '*.md' + output: out.md env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: Create Issue From File + uses: peter-evans/create-issue-from-file@v3 + with: + title: Broken Link Detected + content-filepath: out.md + assignees: nightwhite