constellation/.github/workflows/check-links.yml

32 lines
640 B
YAML
Raw Normal View History

2022-09-02 09:52:42 +00:00
name: Links
on:
2022-10-12 08:50:06 +00:00
workflow_dispatch:
2022-09-02 09:52:42 +00:00
push:
branches:
- main
- "release/**"
paths:
- "**.md"
- "**.html"
2022-09-02 09:52:42 +00:00
pull_request:
paths:
- "**.md"
- "**.html"
2022-09-02 09:52:42 +00:00
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
with:
ref: ${{ github.head_ref }}
2022-09-02 09:52:42 +00:00
- name: Link Checker
uses: lycheeverse/lychee-action@25f59e1bc8f12b314a1e366f825e00d13de2d80b # tag=v1.5.2
2022-09-02 09:52:42 +00:00
with:
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}