We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b853e5 commit 2296c25Copy full SHA for 2296c25
.github/workflows/build-docs.yaml
@@ -52,6 +52,18 @@ jobs:
52
publish_dir: ./_docs
53
user_name: github-actions[bot]
54
user_email: 41898282+github-actions[bot]@users.noreply.github.com
55
+ - name: Trigger mintlify workflow
56
+ if: github.event_name == 'push'
57
+ uses: actions/github-script@v7
58
+ with:
59
+ github-token: ${{ secrets.DOCS_WORKFLOW_TOKEN }}
60
+ script: |
61
+ await github.rest.actions.createWorkflowDispatch({
62
+ owner: 'nixtla',
63
+ repo: 'docs',
64
+ workflow_id: 'mintlify-action.yml',
65
+ ref: 'main',
66
+ });
67
- name: Configure redirects for gh-pages
68
run: python docs-scripts/configure-redirects.py hierarchicalforecast
69
- name: Deploy to Github Pages
0 commit comments