Prepare Release #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Prepare Release' | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version to be released.' | |
| required: false | |
| default: '' | |
| type: string | |
| base-branch: | |
| description: 'The branch that will be used as the origin for the release branch.' | |
| required: false | |
| default: '' | |
| type: string | |
| permissions: {} | |
| jobs: | |
| prepare_release: | |
| uses: OpenVoxProject/shared-actions/.github/workflows/prepare_release.yml@main | |
| with: | |
| allowed_owner: 'OpenVoxProject' | |
| base-branch: ${{ github.event.inputs.base-branch }} | |
| version: ${{ github.event.inputs.version }} | |
| secrets: | |
| github_pat: ${{ secrets.OPENVOXBOT_COMMIT_AND_PRS }} | |
| ssh_private_key: ${{ secrets.OPENVOXBOT_SSH_PRIVATE_KEY }} |