diff --git a/beta/beta-branch.yml b/beta/beta-branch.yml index 994d03a1..0336ca18 100644 --- a/beta/beta-branch.yml +++ b/beta/beta-branch.yml @@ -29,9 +29,19 @@ jobs: BRANCH=${GITHUB_REF##*/} git config user.name "Mikl Wolfe" git config user.email "wolfemikl@gmail.com" + echo test first: $(git status) + echo test first: $(git log) git checkout main + echo test main: $(git status) + echo test main: $(git log) git checkout -b beta-branch + echo test beta-branch: $(git status) + echo test beta-branch: $(git log) git reset --soft ${BRANCH} + echo test reset: $(git status) + echo test reset: $(git log) git add . git commit -am 'Beta branch' - gh pr create -R chiefmikey/gitlang-beta --title ${BRANCH} --body 'Beta branch' --head beta-branch + echo test commit: $(git status) + echo test commit: $(git log) + gh pr create -R chiefmikey/gitlang-beta --title ${BRANCH} --body 'Beta branch' --base main --head beta-branch