Skip to content

Commit 6c162db

Browse files
authored
Merge pull request #154 from chiefmikey:author_test_fix
Author_test_fix
2 parents 1b4d79f + 64e448e commit 6c162db

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

beta/beta-branch.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)