File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,22 +31,22 @@ jobs:
3131 git config user.email "wolfemikl@gmail.com"
3232 echo test first: $(git status)
3333 TEST=$(git log)
34- echo test first: ${TEST## Author*}
34+ echo test first: ${TEST#Author*}
3535 git checkout main
3636 echo test main: $(git status)
3737 TEST=$(git log)
38- echo test main: ${TEST## Author*}
38+ echo test main: ${TEST#Author*}
3939 git checkout -b beta-branch
4040 echo test beta-branch: $(git status)
4141 TEST=$(git log)
42- echo test beta-branch: ${TEST## Author*}
42+ echo test beta-branch: ${TEST#Author*}
4343 git reset --soft ${BRANCH}
4444 echo test reset: $(git status)
4545 TEST=$(git log)
46- echo test reset: ${TEST## Author*}
46+ echo test reset: ${TEST#Author*}
4747 git add .
4848 git commit -am 'Beta branch'
4949 echo test commit: $(git status)
5050 TEST=$(git log)
51- echo test commit: ${TEST## Author*}
51+ echo test commit: ${TEST#Author*}
5252 gh pr create -R chiefmikey/gitlang-beta --title ${BRANCH} --body 'Beta branch' --base main --head beta-branch
You can’t perform that action at this time.
0 commit comments