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