awesome-neovim/.github/workflows/links.yml
Thomas Versteeg 903b551ea4
Update link checker
Ignore 429 response codes.
2023-10-05 12:43:10 +00:00

36 lines
887 B
YAML

name: Links
on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "00 18 * * *"
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Restore lychee cache
uses: actions/cache@v3
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Link checker
id: lychee
uses: lycheeverse/lychee-action@v1.8.0
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
args: "--cache --max-cache-age 1d -a 429 ."
- name: Create issue from file
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v4
with:
title: "Link check report"
content-filepath: ./lychee/out.md
labels: report, automated issue