From 0849597af08268a653098453d9a80943abe3af04 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 12:57:42 +0000 Subject: [PATCH 1/2] Initial plan From 203e98dcb13dd6d7362ffa534fed3507e6dc4c27 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 13:01:07 +0000 Subject: [PATCH 2/2] Fix YAML syntax error in bump-version.yml: use block scalar for run command Co-authored-by: tihonove <2770182+tihonove@users.noreply.github.com> --- .github/workflows/bump-version.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index a4960d8..41b0328 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -34,7 +34,8 @@ jobs: 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" + run: | + npm version ${{ github.event.inputs.bump_type }} -m "chore(release): %s" - name: Push commit and tag run: git push origin HEAD --follow-tags