Skip to content

Commit 81eb097

Browse files
committed
Added additional option to manual runs: verbose
1 parent b042e31 commit 81eb097

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/bumpversion.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ on:
1313
description: Set the version to a specific value
1414
required: false
1515
type: string
16+
verbose:
17+
description: The amount of output detail
18+
default: 0
19+
type: choice
20+
options:
21+
- "0"
22+
- "1"
23+
- "2"
24+
1625
jobs:
1726
bumpversion:
1827
runs-on: ubuntu-latest
@@ -62,6 +71,7 @@ jobs:
6271
env:
6372
BUMPVERSION_DRY_RUN: ${{ inputs.dry_run }}
6473
BUMPVERSION_NEW_VERSION: ${{ inputs.tags }}
74+
BUMPVERSION_VERBOSE: ${{ inputs.verbose }}
6575
run: |
6676
bump-my-version -v "$RELEASE_KIND"
6777
if [[ BUMPVERSION_DRY_RUN == "false" ]]; then

0 commit comments

Comments
 (0)