@spaceflow/review 0.70.0 → 0.71.0
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/CHANGELOG.md +13 -0
- package/dist/index.js +3 -1
- package/package.json +1 -1
- package/src/review.service.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.70.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review@0.69.0...@spaceflow/review@0.70.0) (2026-04-02)
|
|
4
|
+
|
|
5
|
+
### 新特性
|
|
6
|
+
|
|
7
|
+
* **review:** 新增自动批准功能,当所有问题解决时自动提交 APPROVE review ([4155342](https://github.com/Lydanne/spaceflow/commit/4155342511f76d6cd9001a14a144fce55a7a8946))
|
|
8
|
+
* **review:** 添加 workflow 重复运行检测,防止同一 PR 并发审查 ([a3777af](https://github.com/Lydanne/spaceflow/commit/a3777affb10b6fb4f88a83660ce2a81f9f2d6498))
|
|
9
|
+
|
|
10
|
+
### 其他修改
|
|
11
|
+
|
|
12
|
+
* **core:** released version 0.27.0 [no ci] ([053d624](https://github.com/Lydanne/spaceflow/commit/053d624997b04e47537dac4ca0c7a99ed4a4cd36))
|
|
13
|
+
* **publish:** released version 0.51.0 [no ci] ([1fbe22a](https://github.com/Lydanne/spaceflow/commit/1fbe22a538cdcb6264e3937c5706d75f67fa4f2a))
|
|
14
|
+
* **review-summary:** released version 0.37.0 [no ci] ([455c581](https://github.com/Lydanne/spaceflow/commit/455c58140def453d95c8fc85b1ea8fde39037abc))
|
|
15
|
+
|
|
3
16
|
## [0.69.0](https://github.com/Lydanne/spaceflow/compare/@spaceflow/review@0.68.0...@spaceflow/review@0.69.0) (2026-03-04)
|
|
4
17
|
|
|
5
18
|
### 代码重构
|
package/dist/index.js
CHANGED
|
@@ -2024,7 +2024,9 @@ class ReviewService {
|
|
|
2024
2024
|
showAll: options.showAll ?? false,
|
|
2025
2025
|
flush: options.flush ?? false,
|
|
2026
2026
|
eventAction: options.eventAction,
|
|
2027
|
-
localMode
|
|
2027
|
+
localMode,
|
|
2028
|
+
skipDuplicateWorkflow: options.skipDuplicateWorkflow ?? reviewConf.skipDuplicateWorkflow ?? false,
|
|
2029
|
+
autoApprove: options.autoApprove ?? reviewConf.autoApprove ?? false
|
|
2028
2030
|
};
|
|
2029
2031
|
}
|
|
2030
2032
|
/**
|
package/package.json
CHANGED
package/src/review.service.ts
CHANGED
|
@@ -306,6 +306,9 @@ export class ReviewService {
|
|
|
306
306
|
flush: options.flush ?? false,
|
|
307
307
|
eventAction: options.eventAction,
|
|
308
308
|
localMode,
|
|
309
|
+
skipDuplicateWorkflow:
|
|
310
|
+
options.skipDuplicateWorkflow ?? reviewConf.skipDuplicateWorkflow ?? false,
|
|
311
|
+
autoApprove: options.autoApprove ?? reviewConf.autoApprove ?? false,
|
|
309
312
|
};
|
|
310
313
|
}
|
|
311
314
|
|