Skip to content

Commit

Permalink
Update auto_tag.yml (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmcginty authored Feb 29, 2024
1 parent f32de10 commit a3acd47
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/auto_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ on:
options: ['major', 'minor', 'patch', 'none']
required: false
default: 'patch'
dry_run:
description: 'Determine the next version without tagging the branch.'
type: boolean
required: false
default: false

jobs:
# build:
Expand Down Expand Up @@ -58,7 +63,7 @@ jobs:
DEFAULT_BUMP: ${{ github.event.inputs.bump_type || 'patch' }}
WITH_V: "true"
RELEASE_BRANCHES: main
DRY_RUN: true
DRY_RUN: ${{ github.event.inputs.dry_run || false }}



Expand Down

0 comments on commit a3acd47

Please sign in to comment.