chore: update changelog & dist

This commit is contained in:
元凛
2022-11-13 01:09:48 +08:00
parent d51658accd
commit 275328970d
2 changed files with 7 additions and 1 deletions

View File

@@ -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`

2
dist/index.js vendored
View File

@@ -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) => {