Skip to content
Merged
Show file tree
Hide file tree
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: 5 additions & 7 deletions beta/beta-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,9 @@ jobs:
BRANCH=${GITHUB_REF##*/}
git config user.name "Mikl Wolfe"
git config user.email "wolfemikl@gmail.com"
git checkout main
git merge --allow-unrelated-histories ${BRANCH} || true
git checkout --theirs .
git merge --allow-unrelated-histories main || true
git checkout --ours .
git add .
git commit -am 'Merge ${BRANCH}'
git checkout -b beta-branch
git push -fu origin beta-branch
gh pr create --title ${BRANCH} --body 'Beta branch' --base main --head beta-branch
git commit -am 'Merge ${BRANCH} with main'
git push -fu origin ${BRANCH}
gh pr create --title ${BRANCH} --body 'Beta branch' --base main --head ${BRANCH}
2 changes: 1 addition & 1 deletion beta/beta-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Merge branches
run: |
git checkout -b beta-compile
echo $(gh pr list -s open --json)
echo $(gh pr list -s open --json id)
# for pull_request in $(gh pr list -s open --json branch); do
# echo "Merge ${pull_request}"
# git merge ${pull_request}
Expand Down