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 0c41506 commit 2ed90a3Copy full SHA for 2ed90a3
1 file changed
.github/workflows/build.yml
@@ -37,10 +37,13 @@ jobs:
37
git submodule update --init --recursive
38
git submodule update --recursive --remote
39
40
- - name: Commit and push changes
+ - name: Commit and push changes
41
+ env:
42
+ TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
43
run: |
44
git config user.name "github-actions[bot]"
45
git config user.email "github-actions[bot]@users.noreply.github.com"
46
git add --all
47
git commit -m "Update submodules" || echo "No changes to commit"
- git push
48
+ git remote set-url origin https://x-access-token:${TOKEN}@github.com/OrchardCoreContrib/OrchardCoreContrib.App.git
49
+ git push origin HEAD:main
0 commit comments