Refresh customization docs #153
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 TypeDoc Edits | |
| on: | |
| pull_request: | |
| paths: | |
| - 'clerk-typedoc/**' | |
| jobs: | |
| check-typedoc-edits: | |
| runs-on: ubuntu-latest | |
| # Skip if PR is from GitHub Actions bot | |
| if: github.event.pull_request.user.login != 'github-actions[bot]' | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| steps: | |
| - name: Checkout current repository | |
| uses: actions/checkout@v4 | |
| - name: Comment on PR about TypeDoc files | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const script = require('./scripts/check-typedoc-edits.js') | |
| script({ github, context, core }) |