Skip to content

Commit

Permalink
make tag bump optional in merge workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jwaldrop107 committed Jan 31, 2024
1 parent de96797 commit 2c1bc82
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/common_merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ name: Common Merge Workflow
on:
workflow_call:
inputs:
bump_tag:
description: "Whether or not to bump the tag of the commit"
type: booolean
required: false
default: true
doc_target:
description: "The name of the documentation target. Set to 'Sphinx' to skip doxygen"
type: string
Expand All @@ -44,6 +49,7 @@ on:
jobs:
# Bump the version tag
bump_tag:
if: inputs.bump_tag == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 2c1bc82

Please sign in to comment.