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 1dfb098 commit a09ad8cCopy full SHA for a09ad8c
entrypoint
@@ -31,12 +31,13 @@ git config --global user.name "GitHub Submodules Action"
31
32
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${REPO}.git
33
34
-git fetch origin ${REF}
+git fetch --all -p
35
+git checkout "${REF}"
36
37
git submodule init
38
git submodule update
39
git submodule foreach 'git fetch --all -p'
40
git submodule foreach 'git merge origin/master'
41
git add -v .
42
git commit -m "bumping submodules"
-git push origin ${REF}
43
+git push origin "${REF}"
0 commit comments