Skip to content

Commit 48f2562

Browse files
chore: Release 6.1.1 [skip ci]
1 parent 800da4c commit 48f2562

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [6.1.1](https://github.com/amannn/action-semantic-pull-request/compare/v6.1.0...v6.1.1) (2025-08-22)
4+
5+
### Bug Fixes
6+
7+
* Parse `headerPatternCorrespondence` properly ([#295](https://github.com/amannn/action-semantic-pull-request/issues/295)) ([800da4c](https://github.com/amannn/action-semantic-pull-request/commit/800da4c97f618e44f972ff9bc21ab5daecc97773))
8+
39
## [6.1.0](https://github.com/amannn/action-semantic-pull-request/compare/v6.0.1...v6.1.0) (2025-08-19)
410

511
### Features

dist/index.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31303,9 +31303,11 @@ function parseConfig() {
3130331303

3130431304
let headerPatternCorrespondence;
3130531305
if (process.env.INPUT_HEADERPATTERNCORRESPONDENCE) {
31306-
headerPatternCorrespondence = ConfigParser.parseString(
31307-
process.env.INPUT_HEADERPATTERNCORRESPONDENCE
31308-
);
31306+
// todo: this should be migrated to an enum w/ ConfigParser.parseEnum
31307+
headerPatternCorrespondence =
31308+
process.env.INPUT_HEADERPATTERNCORRESPONDENCE.split(',')
31309+
.map((part) => part.trim())
31310+
.filter((part) => part.length > 0);
3130931311
}
3131031312

3131131313
let wip;

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)