28 lines
708 B
YAML
28 lines
708 B
YAML
name: Link Check
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, master ]
|
|
pull_request:
|
|
schedule:
|
|
- cron: "0 3 * * 1"
|
|
|
|
jobs:
|
|
link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: lycheeverse/lychee-action@v2
|
|
with:
|
|
args: >-
|
|
--no-progress --insecure
|
|
--user-agent 'curl/7.68.0'
|
|
--max-retries 3
|
|
--retry-wait-time 5
|
|
--exclude '.*star-history\.com.*'
|
|
--accept 200,201,202,203,204,205,206,207,208,226,300,301,302,303,304,305,306,307,308,503
|
|
README.md docs/ apps/ examples/ benchmarks/
|
|
fail: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|