Skip to content

Refresh customization docs #153

Refresh customization docs

Refresh customization docs #153

Workflow file for this run

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 })