summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2025-12-08 22:26:14 +0000
committerGitHub <noreply@github.com>2025-12-08 22:26:14 +0000
commita86322e4a7747500b25cdc57438c2ae06473760e (patch)
tree01025f7ef1a95ea7eb62a1014785ce58fbb1269b
parent505e5c7033f841e277e227718ed328cf64c8a2fc (diff)
Trigger develop docs rebuild on push (#25860)
-rw-r--r--.github/workflows/docs.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 20a1372f26..d3b032248f 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -63,3 +63,16 @@ jobs:
63 folder: .build/docs 63 folder: .build/docs
64 git-config-name: QMK Bot 64 git-config-name: QMK Bot
65 git-config-email: hello@qmk.fm 65 git-config-email: hello@qmk.fm
66
67 - name: Deploy Develop
68 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' && github.repository == 'qmk/qmk_firmware' }}
69 uses: actions/github-script@v6
70 with:
71 github-token: ${{ secrets.QMK_BOT_TOKEN }}
72 script: |
73 const result = await github.rest.actions.createWorkflowDispatch({
74 owner: 'qmk',
75 repo: 'qmk_docs_devel',
76 workflow_id: 'develop.yml',
77 ref: 'main',
78 })