8000 fix link · clerk/clerk-docs@83ae892 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OAuth documentation overhaul #4975

OAuth documentation overhaul

OAuth documentation overhaul #4975

Workflow file for this run

name: Revalidate
env:
API_BASE_URL: https://clerk.com
on:
pull_request:
types: [synchronize]
paths:
- 'docs/**'
jobs:
revalidate:
if: ${{ github.event.pull_request.head.repo.owner.login == 'clerk' }}
runs-on: ubuntu-latest
steps:
- name: Trigger revalidate
run: |
curl -X POST ${{ env.API_BASE_URL }}/docs/revalidate \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${{ secrets.REVALIDATE_DOCS_SECRET }}" \
-d "{\"paths\": [[\"/(website)/docs/pr/[number]\", \"layout\"]]}"
0