Skip to content

Commit

Permalink
Merge pull request #199 from xmidt-org/permissive-names
Browse files Browse the repository at this point in the history
fix:Make the names accepting of different cases since the match is ca…
  • Loading branch information
schmidtw authored Jan 6, 2025
2 parents 04dab97 + d53d2ae commit 5f88ed9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/auto-releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ on:
description: 'Comma separated list of commit types that should trigger a patch release.'
type: string
required: false
default: 'fix, bugfix, perf, refactor, test, tests, chore'
default: fix, Fix, FIX, bugfix, Bugfix, BugFix, BUGFIX, perf, refactor, Refactor, REFACTOR, test, Test, TEST, tests, Tests, TESTS, chore, Chore, CHORE

minor-list:
description: 'The specific minor prefix names to use for minors.'
type: string
required: false
default: feat, Feat, FEAT, feature, Feature, FEATURE

which:
description: Create a 'release' or 'tag'.
Expand All @@ -56,6 +62,7 @@ jobs:
token: ${{ github.token }}
branch: ${{ inputs.branch }}
patchList: ${{ inputs.patch-list }}
minorList: ${{ inputs.minor-list }}
noVersionBumpBehavior: silent
noNewCommitBehavior: silent

Expand Down

0 comments on commit 5f88ed9

Please sign in to comment.