Skip to content

Commit

Permalink
Update update.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
marella authored Nov 18, 2022
1 parent a1eb451 commit c3b0db6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ on:
description: Dry Run
default: '1'
bump:
type: choice
description: Bump Version
default: 'patch'
options:
- patch
- minor
- major

jobs:
update:
Expand All @@ -32,6 +36,9 @@ jobs:
force="${{ github.event.inputs.force }}"
dry="${{ github.event.inputs.dry }}"
bump="${{ github.event.inputs.bump }}"
if [ "$bump" = "" ]; then
bump="patch"
fi
# Check for Updates
status=0
Expand Down

0 comments on commit c3b0db6

Please sign in to comment.