docs: add 3.10.0 changelog #162
Workflow file for this run
This file contains hidden or 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: Check Broken Links in MDX Files | |
on: | |
pull_request: | |
paths: | |
- 'mintlify/**/*.mdx' | |
- '.github/workflows/broken-links.yml' | |
- 'mintlify/check-links.sh' | |
permissions: | |
contents: read | |
jobs: | |
check-broken-links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Mintlify CLI | |
run: npm install -g mintlify | |
- name: Run broken links check | |
run: | | |
echo "## 🔍 Checking for broken links (excluding /api-reference)..." | |
echo "" | |
# Run the check script | |
./mintlify/check-links.sh | |
echo "" | |
echo "> **Note**: Links to \`/api-reference/\` are automatically excluded from this check." |