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 51b89d2 commit aed7fcaCopy full SHA for aed7fca
.github/workflows/update-docs-site.yml
@@ -36,6 +36,7 @@ jobs:
36
with:
37
ref: 'WEBSITE/docs-site-source'
38
path: 'website-docs'
39
+ fetch-depth: 0
40
token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
41
42
- name: Install Python 🐍
@@ -67,6 +68,7 @@ jobs:
67
68
git config --local user.name "Liss-Bot"
69
git add docs
70
git commit -m "Update documentation" || echo "No changes to commit"
71
+ git pull --rebase || (git rebase --abort && exit 1)
72
git push
73
env:
74
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
0 commit comments