feat(hsr): hot state-preserving reload + code-editor tokenizer + demo… #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow goes in the Rezi repo at .github/workflows/docs-dispatch.yml | |
| # It triggers the website repo to sync docs when docs/ changes | |
| name: Dispatch Docs Update | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dispatch to website repo | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.WEBSITE_DISPATCH_TOKEN }} | |
| repository: RtlZeroMemory/rezitui.dev | |
| event-type: docs-update |