ci: auto-label issue priority from the form dropdown #293
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: Documentation Validation | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| validate-docs: | |
| name: Check for broken links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: "24" | |
| - name: Check for broken links | |
| run: npx mintlify broken-links | |
| - name: Check for orphan pages | |
| # Report-only until the existing orphans are resolved (#2253 removes this). | |
| continue-on-error: true | |
| run: bash scripts/check-orphans.sh |