From 16daa104d5ebccecd64cc1220127e211e83b3e33 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 25 Oct 2025 01:52:09 +0800 Subject: [PATCH] feat: add bump version workflow for cua-computer --- .github/workflows/bump-version-computer.yml | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/bump-version-computer.yml diff --git a/.github/workflows/bump-version-computer.yml b/.github/workflows/bump-version-computer.yml new file mode 100644 index 00000000..5f1f709b --- /dev/null +++ b/.github/workflows/bump-version-computer.yml @@ -0,0 +1,22 @@ +name: Bump cua-computer 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-computer' + package_directory: 'libs/python/computer' + bump_type: ${{ inputs.bump_type }} + secrets: inherit