Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Version to be released.'
required: false
default: ''
description: 'Version to be released (e.g., 8.24.0)'
required: true
type: string
base-branch:
description: 'The branch that will be used as the origin for the release branch.'
Expand All @@ -20,9 +19,8 @@ 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 }}
version: ${{ inputs.version }}
base-branch: ${{ inputs.base-branch }}
secrets:
github_pat: ${{ secrets.OPENVOXBOT_COMMIT_AND_PRS }}
ssh_private_key: ${{ secrets.OPENVOXBOT_SSH_PRIVATE_KEY }}
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Version to be released.'
required: false
default: ''
description: 'Version to be released'
required: true
type: string
base-branch:
description: 'The branch where we do this release.'
Expand All @@ -20,9 +19,9 @@ jobs:
release:
uses: OpenVoxProject/shared-actions/.github/workflows/release.yml@main
with:
allowed_owner: 'OpenVoxProject'
base-branch: ${{ github.event.inputs.base-branch }}
version: ${{ github.event.inputs.version }}
version: ${{ inputs.version }}
base-branch: ${{ inputs.base-branch }}
bump_to_rc_after_release: true
secrets:
github_pat: ${{ secrets.OPENVOXBOT_COMMIT_AND_PRS }}
ssh_private_key: ${{ secrets.OPENVOXBOT_SSH_PRIVATE_KEY }}