Skip to content

Merge pull request #132 from objectstack-ai/copilot/add-plugin-better… #73

Merge pull request #132 from objectstack-ai/copilot/add-plugin-better…

Merge pull request #132 from objectstack-ai/copilot/add-plugin-better… #73

Workflow file for this run

name: "Check Links"
on:
push:
branches:
- main
paths:
- '**/*.md'
- 'apps/site/content/**/*.mdx'
pull_request:
paths:
- '**/*.md'
- 'apps/site/content/**/*.mdx'
schedule:
# Run weekly on Sundays at 00:00 UTC
- cron: '0 0 * * 0'
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Check links in Markdown files
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress '**/*.md' 'apps/site/content/**/*.mdx'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}