Update MAINTAINERS.md #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Code Quality: Link Checker" | |
on: | |
pull_request: | |
jobs: | |
linkchecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Link Checker | |
uses: lycheeverse/lychee-action@v1.10.0 | |
with: | |
# Providing default parameters plus an exclude for Google Meet which produces a network error when checked | |
args: --verbose --no-progress './**/*.md' './**/*.html' --exclude https://meet.google.com | |
fail: true | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |