Update next #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update next | |
on: | |
workflow_run: | |
workflows: | |
- Release | |
branches: | |
- main | |
types: completed | |
jobs: | |
rebase: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Rebase next to main | |
run: | | |
git fetch --unshallow | |
git checkout next | |
git rebase origin/main | |
git push |