This action creates a new branch from a specific tag.
Optional The name of the branch to create. Default "release-candidate"
.
Required The name of the tag from which new branch will be created.
tag should be prefix with tags/your-tag.
branch you can provide directly.
create branch from tag
- name: creating rc branch
uses: satya-500/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: release
tag: tags/v0.0.7
create branch from specific ref (branch)
- name: creating rc branch
uses: satya-500/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: release
tag: test