this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: 🔧 update GitHub Actions workflow schedule and link checker arguments

Modified the cron schedule in links.yml to run monthly instead of daily, and added an argument to the Lychee action to include 403 errors in the link checking process, improving the workflow's efficiency and coverage.

+2 -1
+2 -1
.github/workflows/links.yml
··· 4 4 repository_dispatch: 5 5 workflow_dispatch: 6 6 schedule: 7 - - cron: "0 0 * * *" 7 + - cron: "0 0 1 * *" 8 8 9 9 jobs: 10 10 linkChecker: ··· 18 18 id: lychee 19 19 uses: lycheeverse/lychee-action@v2 20 20 with: 21 + args: -a 403 21 22 fail: false 22 23 23 24 - name: Create Issue From File