Skip to content

Commit b6f59fd

Browse files
committed
feat: Update version increment options to include "build"
1 parent b149e7f commit b6f59fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ on:
55
workflow_dispatch:
66
inputs:
77
versionIncrement:
8-
description: 'The version increment. Allowed values are "major" and "minor".'
8+
description: 'The version increment. Allowed values are "major", "minor" and "build".'
99
required: true
1010
default: 'minor'
1111

1212
jobs:
1313
prepare-release:
1414
name: 🚚 Prepare new release
1515
runs-on: ubuntu-latest
16-
if: github.ref == 'refs/heads/main' && contains(fromJson('["major","minor"]'), github.event.inputs.versionIncrement)
16+
if: github.ref == 'refs/heads/main' && contains(fromJson('["major","minor","build"]'), github.event.inputs.versionIncrement)
1717
steps:
1818
- name: 🛒 Checkout repository
1919
uses: actions/checkout@v6

0 commit comments

Comments
 (0)