oh-my-customcode 0.74.0 → 0.75.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/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/manifest.json +1 -1
- package/templates/workflows/auto-dev.yaml +10 -8
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
package/templates/manifest.json
CHANGED
|
@@ -7,16 +7,18 @@ mode: auto
|
|
|
7
7
|
error: halt-and-report
|
|
8
8
|
|
|
9
9
|
steps:
|
|
10
|
-
- name:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
10
|
+
- name: issue-analysis
|
|
11
|
+
parallel:
|
|
12
|
+
- name: pre-triage
|
|
13
|
+
skill: professor-triage
|
|
14
|
+
description: Run professor-triage on open issues that lack verify-done label
|
|
15
|
+
condition: "open issues without label:verify-done exist"
|
|
16
|
+
- name: triage
|
|
17
|
+
skill: professor-triage
|
|
18
|
+
description: Analyze verify-done issues against current codebase and perform automated triage
|
|
18
19
|
|
|
19
20
|
- name: plan
|
|
21
|
+
depends_on: issue-analysis
|
|
20
22
|
skill: release-plan
|
|
21
23
|
description: Group triaged issues into release units by priority and size
|
|
22
24
|
input: triage-results
|