2021-07-12 17:07:56 -04:00
|
|
|
name: Link Checker
|
|
|
|
on:
|
2021-09-08 14:24:19 -04:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
2021-07-12 17:07:56 -04:00
|
|
|
jobs:
|
|
|
|
linkchecker:
|
2021-12-13 18:20:00 -05:00
|
|
|
if: github.repository == 'opensearch-project/OpenSearch'
|
2021-07-12 17:07:56 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: lychee Link Checker
|
|
|
|
id: lychee
|
2021-12-27 12:23:52 -05:00
|
|
|
uses: lycheeverse/lychee-action@v1.2.0
|
2021-07-12 17:07:56 -04:00
|
|
|
with:
|
2021-12-27 12:23:52 -05:00
|
|
|
args: --accept=200,403,429 --exclude-mail **/*.html **/*.md **/*.txt **/*.json --exclude-file .lychee.excludes
|
|
|
|
fail: true
|
2021-07-12 17:07:56 -04:00
|
|
|
env:
|
2021-12-27 12:23:52 -05:00
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|