Skip to content

Commit

Permalink
chore: update changelog & dist
Browse files Browse the repository at this point in the history
  • Loading branch information
xrkffgg committed Nov 12, 2022
1 parent d51658a commit 2753289
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
馃洜 refactor
-->

## v3.3.3

`2022.11.13`

- 馃悶 fix: body null case. [#129](https://github.com/actions-cool/issues-helper/pull/129) [@madmansn0w](https://github.com/madmansn0w)

## v3.3.2

`2022.10.21`
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17435,7 +17435,7 @@ const dealRandomAssignees = (assignees, randomTo) => {
};
exports.dealRandomAssignees = dealRandomAssignees;
const matchKeyword = (content = '', keywords) => {
return !!keywords.find(item => content.toLowerCase().includes(item));
return !!keywords.find(item => content === null || content === void 0 ? void 0 : content.toLowerCase().includes(item));
};
exports.matchKeyword = matchKeyword;
const checkDuplicate = (body) => {
Expand Down

0 comments on commit 2753289

Please sign in to comment.