Skip to content

fix: update Knowledge Base link to compux.net #2

fix: update Knowledge Base link to compux.net

fix: update Knowledge Base link to compux.net #2

Workflow file for this run

name: Check Links
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 9 * * 1' # Every Monday at 9am
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check links in markdown files
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress '**/*.md'
fail: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}