From 50493a80b13402ec11847ae48f502432a678bbc9 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 25 Oct 2025 01:43:18 +0800 Subject: [PATCH] feat: add bump version workflow for cua-core --- .github/workflows/bump-version-core.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/bump-version-core.yml diff --git a/.github/workflows/bump-version-core.yml b/.github/workflows/bump-version-core.yml new file mode 100644 index 00000000..ff3302ff --- /dev/null +++ b/.github/workflows/bump-version-core.yml @@ -0,0 +1,22 @@ +name: Bump cua-core Version + +on: + workflow_dispatch: + inputs: + bump_type: + description: 'Version bump type' + required: true + type: choice + options: + - patch + - minor + - major + +jobs: + bump: + uses: ./.github/workflows/bump-version-reusable.yml + with: + package_name: 'cua-core' + package_directory: 'libs/python/core' + bump_type: ${{ inputs.bump_type }} + secrets: inherit