constellation/.github/workflows/check-links.yml
renovate[bot] c18feaaace
Update lycheeverse/lychee-action action to v1.5.4 (#492)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-09 11:10:46 +01:00

32 lines
636 B
YAML

name: Links
on:
workflow_dispatch:
push:
branches:
- main
- "release/**"
paths:
- "**.md"
- "**.html"
pull_request:
paths:
- "**.md"
- "**.html"
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
with:
ref: ${{ github.head_ref }}
- name: Link Checker
uses: lycheeverse/lychee-action@4dcb8bee2a0a4531cba1a1f392c54e8375d6dd81 # v1.5.4
with:
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}