Skip to content

Commit e25a972

Browse files
authored
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
1 parent a10d5fa commit e25a972

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/version-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
LABEL_NAME: ${{ github.event.label.name }}
4242
id: bump-type
4343
run: |
44-
case "$LABEL_NAME" in in
44+
case "$LABEL_NAME" in
4545
"version:patch")
4646
echo "type=patch" >> $GITHUB_OUTPUT
4747
;;

0 commit comments

Comments
 (0)