Skip to content

Commit

Permalink
fix(workflows): rebase next branch on top of main after a new release
Browse files Browse the repository at this point in the history
  • Loading branch information
BalbinaK committed May 8, 2023
1 parent 451b8fa commit c3f4d7b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/update-alpha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Update next
on:
workflow_run:
workflows:
- Release
branches:
- main
types: completed
jobs:
rebase:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Rebase next to main
run: |
git fetch --unshallow
git checkout next
git rebase origin/main
git push

0 comments on commit c3f4d7b

Please sign in to comment.