Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion beta/beta-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 hist)
git checkout main
echo test main: $(git status)
echo test main: $(git hist)
git checkout -b beta-branch
echo test beta-branch: $(git status)
echo test beta-branch: $(git hist)
git reset --soft ${BRANCH}
echo test reset: $(git status)
echo test reset: $(git hist)
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 hist)
gh pr create -R chiefmikey/gitlang-beta --title ${BRANCH} --body 'Beta branch' --base main --head beta-branch