chore(docs): adds GitHub action to rebuild docs on change (#9987)

This commit is contained in:
Michael Bleigh
2025-09-26 13:21:50 -07:00
committed by GitHub
parent 0d22b22c82
commit 94b377049b

17
.github/workflows/docs-rebuild.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: 'Trigger Docs Rebuild'
on:
push:
branches:
- 'main'
paths:
- 'docs/**'
jobs:
trigger-rebuild:
runs-on: 'ubuntu-latest'
steps:
- name: 'Trigger rebuild'
run: |
curl -X POST \
-H "Content-Type: application/json" \
-d '{}' \
"${{ secrets.DOCS_REBUILD_URL }}"