@compozy/cli 0.1.11 → 0.1.12
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/README.md +6 -2
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -176,6 +176,7 @@ include_resolved = false
|
|
|
176
176
|
|
|
177
177
|
[fetch_reviews]
|
|
178
178
|
provider = "coderabbit"
|
|
179
|
+
nitpicks = false
|
|
179
180
|
```
|
|
180
181
|
|
|
181
182
|
Supported sections:
|
|
@@ -185,7 +186,7 @@ Supported sections:
|
|
|
185
186
|
- `[start]` for `include_completed`
|
|
186
187
|
- `[tasks]` for the allowed task `type` list used by `cy-create-tasks` and `compozy validate-tasks`
|
|
187
188
|
- `[fix_reviews]` for `concurrent`, `batch_size`, and `include_resolved`
|
|
188
|
-
- `[fetch_reviews]` for `provider`
|
|
189
|
+
- `[fetch_reviews]` for `provider` and `nitpicks` (controls CodeRabbit review-body comments; default is enabled when unset)
|
|
189
190
|
|
|
190
191
|
Notes:
|
|
191
192
|
|
|
@@ -669,7 +670,7 @@ compozy fetch-reviews [flags]
|
|
|
669
670
|
```
|
|
670
671
|
|
|
671
672
|
Running `compozy fetch-reviews` with no flags opens the interactive form automatically.
|
|
672
|
-
When present, `.compozy/config.toml` can provide defaults such as
|
|
673
|
+
When present, `.compozy/config.toml` can provide defaults such as `provider` and `nitpicks`.
|
|
673
674
|
|
|
674
675
|
| Flag | Default | Description |
|
|
675
676
|
| ------------ | ------- | ----------------------------------------- |
|
|
@@ -678,6 +679,9 @@ When present, `.compozy/config.toml` can provide defaults such as `--provider`.
|
|
|
678
679
|
| `--name` | | Workflow name |
|
|
679
680
|
| `--round` | `0` | Round number (auto-increments if omitted) |
|
|
680
681
|
|
|
682
|
+
By default, `fetch-reviews` imports CodeRabbit review-body comments for `nitpick`, `minor`, and `major`.
|
|
683
|
+
Use `[fetch_reviews].nitpicks = false` in `.compozy/config.toml` to disable that import.
|
|
684
|
+
|
|
681
685
|
</details>
|
|
682
686
|
|
|
683
687
|
<details>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compozy/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.12",
|
|
5
5
|
"description": "Compozy CLI",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node install.js",
|
|
@@ -27,63 +27,63 @@
|
|
|
27
27
|
},
|
|
28
28
|
"archives": {
|
|
29
29
|
"darwin-arm64": {
|
|
30
|
-
"name": "compozy_0.1.
|
|
31
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
30
|
+
"name": "compozy_0.1.12_darwin_arm64.tar.gz",
|
|
31
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.12/compozy_0.1.12_darwin_arm64.tar.gz",
|
|
32
32
|
"bins": [
|
|
33
33
|
"compozy"
|
|
34
34
|
],
|
|
35
35
|
"format": "tar.gz",
|
|
36
36
|
"checksum": {
|
|
37
37
|
"algorithm": "sha256",
|
|
38
|
-
"digest": "
|
|
38
|
+
"digest": "e5d39be82563b5265e83a2605216d0e865652b22f72be5f7d7094d5bca956094"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"darwin-x64": {
|
|
42
|
-
"name": "compozy_0.1.
|
|
43
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
42
|
+
"name": "compozy_0.1.12_darwin_x86_64.tar.gz",
|
|
43
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.12/compozy_0.1.12_darwin_x86_64.tar.gz",
|
|
44
44
|
"bins": [
|
|
45
45
|
"compozy"
|
|
46
46
|
],
|
|
47
47
|
"format": "tar.gz",
|
|
48
48
|
"checksum": {
|
|
49
49
|
"algorithm": "sha256",
|
|
50
|
-
"digest": "
|
|
50
|
+
"digest": "ec54dcecad2f7cf3ae9a17505e23b289fca60999670518d7680d95d89255f844"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"linux-arm64": {
|
|
54
|
-
"name": "compozy_0.1.
|
|
55
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
54
|
+
"name": "compozy_0.1.12_linux_arm64.tar.gz",
|
|
55
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.12/compozy_0.1.12_linux_arm64.tar.gz",
|
|
56
56
|
"bins": [
|
|
57
57
|
"compozy"
|
|
58
58
|
],
|
|
59
59
|
"format": "tar.gz",
|
|
60
60
|
"checksum": {
|
|
61
61
|
"algorithm": "sha256",
|
|
62
|
-
"digest": "
|
|
62
|
+
"digest": "996c83d0c0aac3b15c12cb031fb5db892db6d0a78c625544d993287287824b86"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
"linux-x64": {
|
|
66
|
-
"name": "compozy_0.1.
|
|
67
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
66
|
+
"name": "compozy_0.1.12_linux_x86_64.tar.gz",
|
|
67
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.12/compozy_0.1.12_linux_x86_64.tar.gz",
|
|
68
68
|
"bins": [
|
|
69
69
|
"compozy"
|
|
70
70
|
],
|
|
71
71
|
"format": "tar.gz",
|
|
72
72
|
"checksum": {
|
|
73
73
|
"algorithm": "sha256",
|
|
74
|
-
"digest": "
|
|
74
|
+
"digest": "2f52d658cfe8926d35c60df757f02afd5fac79e9aa39c6535c7af593c61d9d7b"
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
"win32-x64": {
|
|
78
|
-
"name": "compozy_0.1.
|
|
79
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
78
|
+
"name": "compozy_0.1.12_windows_x86_64.zip",
|
|
79
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.12/compozy_0.1.12_windows_x86_64.zip",
|
|
80
80
|
"bins": [
|
|
81
81
|
"compozy.exe"
|
|
82
82
|
],
|
|
83
83
|
"format": "zip",
|
|
84
84
|
"checksum": {
|
|
85
85
|
"algorithm": "sha256",
|
|
86
|
-
"digest": "
|
|
86
|
+
"digest": "2688812133944d61987332c46a98cf504ebc5c84896008762fdc2ff6615197be"
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
}
|