We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10f57d9 commit 9ddce26Copy full SHA for 9ddce26
.github/workflows/release.yml
@@ -85,17 +85,8 @@ jobs:
85
skip_fetch: true
86
skip_checkout: true
87
88
- - name: Merge automatically into main branch
89
- uses: devmasx/[email protected]
90
- with:
91
- type: now
92
- from_branch: release-${{ github.ref_name }}
93
- target_branch: main
94
- message: Automatic merge after release ${{ github.ref_name }}
95
- github_token: ${{ secrets.REPO_ACCESS_TOKEN }}
96
-
97
- - name: Delete merged branch
98
- uses: dawidd6/[email protected]
99
100
- github_token: ${{ secrets.GITHUB_TOKEN }}
101
- branches: release-${{ github.ref_name }}
+ - name: Rebase main onto this branch
+ run: |
+ git checkout main
+ git rebase release-${{ github.ref_name }}
+ git branch -D release-${{ github.ref_name }}
0 commit comments