Update Version for all repositories #6
This file contains 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: Update Version for all repositories | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch to use' | |
type: string | |
default: 'develop' | |
milestone: | |
description: 'Milestone to use as version' | |
type: string | |
required: true | |
workflow_call: | |
inputs: | |
branch: | |
description: 'Branch to use' | |
type: string | |
default: 'develop' | |
milestone: | |
description: 'Milestone to use as version' | |
type: string | |
required: true | |
jobs: | |
call-gateway-update-version: | |
uses: ./.github/workflows/update-version.yml | |
secrets: inherit | |
with: | |
branch: ${{ inputs.branch }} | |
milestone: "${{inputs.milestone}}" | |
call-base-release-version: | |
uses: assimbly/base/.github/workflows/update-version.yml@develop | |
secrets: inherit | |
with: | |
branch: ${{ inputs.branch }} | |
milestone: "${{inputs.milestone}}" | |
call-custom-components-release-version: | |
uses: assimbly/custom-components/.github/workflows/update-version.yml@develop | |
secrets: inherit | |
with: | |
branch: ${{ inputs.branch }} | |
milestone: "${{inputs.milestone}}" | |
call-runtime-release-version: | |
uses: assimbly/runtime/.github/workflows/update-version.yml@develop | |
secrets: inherit | |
with: | |
branch: ${{ inputs.branch }} | |
milestone: "${{inputs.milestone}}" | |