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 8836c21 commit e1e1e3bCopy full SHA for e1e1e3b
.github/workflows/update_submodules.yml
@@ -20,11 +20,11 @@ jobs:
20
21
- name: Update submodules
22
env:
23
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
24
run: |
25
git submodule update --init && git submodule update --remote
26
- git config user.name github-actions
27
- git config user.email [email protected]
+ git config --global user.name "${{ secrets.NAME }}"
+ git config --global user.email "${{ secrets.EMAIL }}"
28
git add .
29
git commit -m "Update submodules" || echo "No changes to commit"
30
git push
0 commit comments