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 fd5006a commit f8f11e1Copy full SHA for f8f11e1
.github/workflows/update-content.yml
@@ -22,10 +22,12 @@ jobs:
22
run: |
23
git config --global user.email "[email protected]"
24
git config --global user.name "$GITHUB_ACTOR"
25
+ git config --global url."https://${{ secrets.CONTENT_UPDATE_PAT }}@github.com/".insteadOf "https://github.com/"
26
27
- name: Update content submodule
28
29
+ git submodule sync
30
git submodule update --remote --recursive
31
git add content
- git commit -m "Update content submodule" || echo "No changes to commit"
32
+ git commit -m "[github action] auto update content submodule" || echo "No changes to commit"
33
git push origin main
0 commit comments