taskplane 0.2.4 → 0.2.5
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.
|
@@ -78,6 +78,9 @@ export function parseMergeResult(resultPath: string): MergeResult {
|
|
|
78
78
|
);
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
// Normalize status to uppercase (merge agents may write lowercase)
|
|
82
|
+
parsed.status = String(parsed.status).toUpperCase();
|
|
83
|
+
|
|
81
84
|
// Validate status value
|
|
82
85
|
if (!VALID_MERGE_STATUSES.has(parsed.status)) {
|
|
83
86
|
execLog("merge", "parse", `unknown merge status "${parsed.status}" — treating as BUILD_FAILURE`, {
|