File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 9898
9999 - name : Update to next development version
100100 run : |
101+ git checkout -b release/prepare-${{ inputs.nextVersion }}
101102 mvn versions:set -DnewVersion=${{ inputs.nextVersion }} -DgenerateBackupPoms=false
102103 git add .
103104 git commit -m "chore: prepare next development iteration ${{ inputs.nextVersion }}"
104- git push origin main
105+ git push origin release/prepare-${{ inputs.nextVersion }}
106+
107+ - name : Create PR for next version
108+ run : |
109+ gh pr create \
110+ --base main \
111+ --head release/prepare-${{ inputs.nextVersion }} \
112+ --title "chore: prepare next development iteration ${{ inputs.nextVersion }}" \
113+ --body "Automated version bump after release ${{ inputs.releaseVersion }}" \
114+ --assignee ${{ github.actor }}
115+ env :
116+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments