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