Skip to content

Commit 975cf95

Browse files
RtlZeroMemoryclaude
andcommitted
ci: add docs dispatch workflow for rezitui.dev
Triggers website rebuild when docs/ or mkdocs.yml changes on main. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bab99eb commit 975cf95

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This workflow goes in the Rezi repo at .github/workflows/docs-dispatch.yml
2+
# It triggers the website repo to sync docs when docs/ changes
3+
4+
name: Dispatch Docs Update
5+
6+
on:
7+
push:
8+
branches: [main]
9+
paths:
10+
- 'docs/**'
11+
- 'mkdocs.yml'
12+
13+
jobs:
14+
dispatch:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Dispatch to website repo
18+
uses: peter-evans/repository-dispatch@v3
19+
with:
20+
token: ${{ secrets.WEBSITE_DISPATCH_TOKEN }}
21+
repository: RtlZeroMemory/rezitui.dev
22+
event-type: docs-update

0 commit comments

Comments
 (0)