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
9 changes: 8 additions & 1 deletion beta/beta-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,17 @@ jobs:
uses: actions/checkout@v3
with:
token: ${{ secrets.DISPATCH_REPO }}
fetch-depth: 0

- name: Open PR
env:
GH_TOKEN: ${{ secrets.DISPATCH_REPO }}
run: |
git pull --rebase=false --autostash --no-edit --allow-unrelated-histories origin main
git config user.name "Mikl Wolfe"
git config user.email "wolfemikl@gmail.com"
git checkout -b beta-branch
git checkout main
git reset --soft beta-branch
git add .
git commit -am 'Beta branch'
gh pr create --title '${GITHUB_REF##*/}' --body 'Beta branch'