This action cuts a new release branch with a branch name of <prefix><semantic-version>
.
Required The repository url you are running the action in.
'https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git'
Required The prefix you would like prepended to the branch name.
Required The bumped semantic version you would like to create a new branch with.
The name of the new release branch.
- name: Cut Release Branch
id: crb
uses: jessicalostinspace/[email protected]
with:
repository-url: 'https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git'
branch-prefix: 'release-v'
semantic-version: ${{ steps.bsv.outputs.bumped-semantic-version }}