Skip to content

Commit 564cd9b

Browse files
committed
chore: update dist
1 parent b8bda47 commit 564cd9b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
🛠 refactor
88
-->
99

10+
## v3.7.1
11+
12+
`2025.11.03`
13+
14+
- 🚀 feat: find-comments action body-includes param support multiple value. [#213](https://github.com/actions-cool/issues-helper/pull/213) [@btea](https://github.com/btea)
15+
1016
## v3.7.0
1117

1218
`2025.10.31`

dist/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39653,7 +39653,9 @@ function doFindComments() {
3965339653
const direction = core.getInput('direction') === 'desc' ? 'desc' : 'asc';
3965439654
for (const comment of commentList) {
3965539655
const checkUser = commentAuth ? comment.user.login === commentAuth : true;
39656-
const checkBody = bodyIncludes ? comment.body.includes(bodyIncludes) : true;
39656+
const checkBody = bodyIncludes
39657+
? (0, actions_util_1.dealStringToArr)(bodyIncludes).some(text => comment.body.includes(text))
39658+
: true;
3965739659
if (checkUser && checkBody) {
3965839660
comments.push({
3965939661
id: comment.id,

0 commit comments

Comments
 (0)