mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-19 10:15:59 +08:00
chore: update changelog & dist
This commit is contained in:
@@ -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
2
dist/index.js
vendored
@@ -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) => {
|
||||
|
Reference in New Issue
Block a user