Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit adb7158

Browse files
committed
fix: response for automated checks
1 parent ba7f13e commit adb7158

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/app/api/system/checks/route.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,9 @@ export async function GET(request, { params }) {
107107

108108
console.log("CHECKS PERFORMED", runs);
109109

110-
return Response.json(runs);
110+
return Response.json({
111+
runs,
112+
ignores: repoStatus.ignore,
113+
errors: repoStatus.error,
114+
});
111115
}

0 commit comments

Comments
 (0)