mirror of
https://github.com/rockerBOO/awesome-neovim
synced 2024-11-14 15:27:12 +00:00
903b551ea4
Ignore 429 response codes.
36 lines
887 B
YAML
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
|