Files
computer/.github/workflows/bump-version-agent.yml
Claude f11db63d3c Fix code formatting with prettier
Applied prettier formatting to workflow files and documentation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 02:12:05 +08:00

23 lines
460 B
YAML

name: Bump cua-agent 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-agent"
package_directory: "libs/python/agent"
bump_type: ${{ inputs.bump_type }}
secrets: inherit