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 231812a commit fe4625aCopy full SHA for fe4625a
template/.github/workflows/deploy-docs.yaml
@@ -23,6 +23,13 @@ jobs:
23
with:
24
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
25
26
+ - name: Configure git for the bot
27
+ # Gives the bot that commits to gh-pages a name & email address
28
+ # so that the commits have an author in the commit log.
29
+ run: |
30
+ git config user.name github-actions[bot]
31
+ git config user.email github-actions[bot]@users.noreply.github.com
32
+
33
- name: Set up Python
34
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
35
0 commit comments