Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:Make the names accepting of different cases since the match is ca… #199

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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