From 33d668e287db3c2a41bc2bde0309bf2dcdd00cb0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 11:53:26 +0000 Subject: [PATCH 1/2] Initial plan From 01cabb4b886e6b50f35a45e66a552c845cea9fcd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 11:55:20 +0000 Subject: [PATCH 2/2] feat: add manual workflow for version bump and tagging Co-authored-by: tihonove <2770182+tihonove@users.noreply.github.com> --- .github/workflows/bump-version.yml | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/bump-version.yml diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml new file mode 100644 index 0000000..a4960d8 --- /dev/null +++ b/.github/workflows/bump-version.yml @@ -0,0 +1,40 @@ +name: Bump Version + +on: + workflow_dispatch: + inputs: + bump_type: + description: "Version bump type" + required: true + default: patch + type: choice + options: + - patch + - minor + - major + +permissions: + contents: write + +jobs: + bump-version: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Use Node.js 20.x + uses: actions/setup-node@v2 + with: + node-version: 20.x + + - name: Configure Git user + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + + - name: Bump version + run: npm version ${{ github.event.inputs.bump_type }} -m "chore(release): %s" + + - name: Push commit and tag + run: git push origin HEAD --follow-tags