- Use conditional expression to check if GH_PAT exists before using it - Fallback to GITHUB_TOKEN if GH_PAT is not set or empty - This fixes the 'token not supplied' error
23 lines
694 B
YAML
23 lines
694 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
|
|
with:
|
|
fetch-depth: 1
|
|
token: ${{ secrets.GH_PAT != '' && secrets.GH_PAT || secrets.GITHUB_TOKEN }}
|
|
- uses: lycheeverse/lychee-action@v2
|
|
with:
|
|
args: --no-progress --insecure --user-agent 'curl/7.68.0' --exclude '.*api\.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/
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|