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 398e6cf commit 8fbaa75Copy full SHA for 8fbaa75
1 file changed
.github/workflows/deploy-python-docs.yml
@@ -93,6 +93,12 @@ jobs:
93
token: ${{ secrets.HUMEMAI_DOCS_TOKEN }}
94
path: humemai-docs
95
96
+ - name: Configure Git (humemai-docs)
97
+ if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
98
+ run: |
99
+ git -C humemai-docs config user.name "github-actions[bot]"
100
+ git -C humemai-docs config user.email "github-actions[bot]@users.noreply.github.com"
101
+
102
- name: Deploy with mike (set as latest)
103
if: (github.event_name == 'workflow_dispatch' || github.event_name == 'push') && steps.version.outputs.set_latest == 'true'
104
working-directory: humemai-docs
0 commit comments