Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jessicalostinspace/cut-release-action
Github action to cut a release branch given a semantic version
https://github.com/jessicalostinspace/cut-release-action
Last synced: 2 months ago
JSON representation
Github action to cut a release branch given a semantic version
- Host: GitHub
- URL: https://github.com/jessicalostinspace/cut-release-action
- Owner: jessicalostinspace
- License: mit
- Created: 2020-01-06T23:16:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-18T19:20:49.000Z (over 2 years ago)
- Last Synced: 2024-07-22T17:36:00.332Z (6 months ago)
- Language: JavaScript
- Size: 621 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-actions - Cut Release Branch - Cuts a release branch given a branch prefix and optional semantic version. (Community Resources / Utility)
- fucking-awesome-actions - Cut Release Branch - Cuts a release branch given a branch prefix and optional semantic version. (Community Resources / Utility)
- awesome-workflows - Cut Release Branch - Cuts a release branch given a branch prefix and optional semantic version. (Community Resources / Utility)
README
# Cut Release Branch
This action cuts a new release branch with a branch name of ``.
## Inputs
### `repository-url`
**Required** The repository url you are running the action in.
`'https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git'`### `branch-prefix`
**Required** The prefix you would like prepended to the branch name.
### `semantic-version`
**Required** The bumped semantic version you would like to create a new branch with.
## Outputs
### `release-branch-name`
The name of the new release branch.
## Example usage
- 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 }}