2022-09-02 05:52:42 -04:00
|
|
|
name: Links
|
|
|
|
|
|
|
|
on:
|
2022-10-12 04:50:06 -04:00
|
|
|
workflow_dispatch:
|
2022-09-02 05:52:42 -04:00
|
|
|
push:
|
|
|
|
branches:
|
2022-09-05 03:49:10 -04:00
|
|
|
- main
|
2022-10-18 10:17:41 -04:00
|
|
|
- "release/**"
|
2022-09-05 03:49:10 -04:00
|
|
|
paths:
|
|
|
|
- "**.md"
|
|
|
|
- "**.html"
|
2022-09-02 05:52:42 -04:00
|
|
|
pull_request:
|
2022-09-05 03:49:10 -04:00
|
|
|
paths:
|
|
|
|
- "**.md"
|
|
|
|
- "**.html"
|
2022-09-02 05:52:42 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
linkChecker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-19 04:59:46 -04:00
|
|
|
- name: Checkout
|
2022-10-12 12:05:58 -04:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
2022-09-19 04:59:46 -04:00
|
|
|
with:
|
2022-10-19 04:32:22 -04:00
|
|
|
ref: ${{ github.head_ref }}
|
2022-09-02 05:52:42 -04:00
|
|
|
|
|
|
|
- name: Link Checker
|
2022-10-12 12:05:58 -04:00
|
|
|
uses: lycheeverse/lychee-action@4a5af7cd2958a2282cefbd9c10f63bdb89982d76 # tag=v1.5.1
|
2022-09-02 05:52:42 -04:00
|
|
|
with:
|
|
|
|
fail: true
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|