Skip to content

Create LAUNCHGUIDE.md #27

Create LAUNCHGUIDE.md

Create LAUNCHGUIDE.md #27

Workflow file for this run

name: Link Check
on:
push:
branches: [ main ]
paths:
- '**.md'
schedule:
# Weekly — external links rot over time
- cron: '0 8 * * 1'
jobs:
linkcheck:
name: Check links in documentation
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
args: |
--verbose
--no-progress
--exclude 'localhost'
--exclude 'pypistats.org'
--exclude 'smithery.ai'
--exclude 'lemonsqueezy.com'
--exclude 'apify.com'
--max-retries 3
README.md
docs/**/*.md
templates/**/*.md
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}