Skip to content

Commit

Permalink
Added additional option to manual runs: verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Apr 14, 2023
1 parent b042e31 commit 81eb097
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/bumpversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ on:
description: Set the version to a specific value
required: false
type: string
verbose:
description: The amount of output detail
default: 0
type: choice
options:
- "0"
- "1"
- "2"

jobs:
bumpversion:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -62,6 +71,7 @@ jobs:
env:
BUMPVERSION_DRY_RUN: ${{ inputs.dry_run }}
BUMPVERSION_NEW_VERSION: ${{ inputs.tags }}
BUMPVERSION_VERBOSE: ${{ inputs.verbose }}
run: |
bump-my-version -v "$RELEASE_KIND"
if [[ BUMPVERSION_DRY_RUN == "false" ]]; then
Expand Down

0 comments on commit 81eb097

Please sign in to comment.