From e25a972d7ddda5e698149e8d435b1b40f0034cf6 Mon Sep 17 00:00:00 2001 From: 35C4n0r <70096901+35C4n0r@users.noreply.github.com> Date: Mon, 2 Feb 2026 21:03:56 +0530 Subject: [PATCH] fix(workflows/version-bump.yaml): fix typo in case statement (#687) ## Description - Fix typo in version bump workflow ## Type of Change - [ ] New module - [ ] New template - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Testing & Validation - [x] Tests pass (`bun test`) - [x] Code formatted (`bun fmt`) - [x] Changes tested locally --- .github/workflows/version-bump.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version-bump.yaml b/.github/workflows/version-bump.yaml index 6637cacc..2e255414 100644 --- a/.github/workflows/version-bump.yaml +++ b/.github/workflows/version-bump.yaml @@ -41,7 +41,7 @@ jobs: LABEL_NAME: ${{ github.event.label.name }} id: bump-type run: | - case "$LABEL_NAME" in in + case "$LABEL_NAME" in "version:patch") echo "type=patch" >> $GITHUB_OUTPUT ;;