job51-gitlab-cr-node-jt-1 2.8.0 → 2.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -989,8 +989,10 @@ ${allReportsText}
|
|
|
989
989
|
debugLog(`开始发布汇总报告到 MR ${mergeRequestIid}`);
|
|
990
990
|
|
|
991
991
|
// 构造评论 Payload
|
|
992
|
+
// 设置 resolvable: false,使汇总报告评论不需要被 resolve
|
|
992
993
|
const discussionData = {
|
|
993
|
-
body: summaryReport
|
|
994
|
+
body: summaryReport,
|
|
995
|
+
resolvable: false
|
|
994
996
|
};
|
|
995
997
|
|
|
996
998
|
// 调用 GitLab API 发布一般讨论评论
|