8000 Merge branch 'main' into ss/DOCS-10474 · clerk/clerk-docs@15ed52a · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OAuth documentation overhaul #4972

OAuth documentation overhaul

OAuth documentation overhaul #4972

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