From d53d2ae4338a84bc94759ce862ea5440925d8fcd Mon Sep 17 00:00:00 2001 From: schmidtw Date: Tue, 29 Oct 2024 08:23:25 -0700 Subject: [PATCH] fix:Make the names accepting of different cases since the match is case sensitive. --- .github/workflows/auto-releaser.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-releaser.yml b/.github/workflows/auto-releaser.yml index 6dd7e64..d02326b 100644 --- a/.github/workflows/auto-releaser.yml +++ b/.github/workflows/auto-releaser.yml @@ -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'. @@ -56,6 +62,7 @@ jobs: token: ${{ github.token }} branch: ${{ inputs.branch }} patchList: ${{ inputs.patch-list }} + minorList: ${{ inputs.minor-list }} noVersionBumpBehavior: silent noNewCommitBehavior: silent