refactor(slurm): move NCCL and runtime configs from template to confi… #22
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
| name: Sync Docs to Public Docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| workflow_dispatch: | |
| jobs: | |
| trigger-docs-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger public-docs workflow | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.DOCS_SYNC_PAT }} | |
| repository: PrimeIntellect-ai/public-docs | |
| event-type: docs-updated | |
| client-payload: '{"repo": "prime-rl", "ref": "${{ github.sha }}"}' | |