File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 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 `
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments