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 5581c3f commit 9c2dfcaCopy full SHA for 9c2dfca
.github/workflows/update-docs.yml
@@ -37,10 +37,12 @@ jobs:
37
38
- name: Commit and push changes
39
run: |
40
- git config --global user.name 'github-actions[bot]'
41
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
+ git config --global user.name "github-actions[bot]"
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
42
git add docs
43
git commit -m "[Doc] Regenerate" || echo "No changes to commit"
44
- git push
45
- env:
46
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Push changes
+ uses: ad-m/github-push-action@master
47
+ with:
48
+ github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments