feat: auto-merge non-breaking dependency updates #5

Merged
naomi merged 4 commits from feat/merge into main 2026-02-20 20:04:19 -08:00
2 changed files with 10 additions and 7 deletions
Showing only changes of commit 53c73d0093 - Show all commits
+3 -3
View File
@@ -145,11 +145,11 @@ class GiteaService {
} }
/** /**
* Gets the combined commit status for a specific commit. * Gets the combined commit status for a specific commit by querying the Gitea API for all status checks.
* @param owner - The repository owner. * @param owner - The repository owner.
* @param repo - The repository name. * @param repo - The repository name.
* @param sha - The commit SHA. * @param sha - The commit SHA to check.
* @returns The combined status of all checks for the commit. * @returns The combined status of all checks (pending, success, error, or failure).
*/ */
public async getCommitStatus( public async getCommitStatus(
owner: string, owner: string,
+6 -3
View File
@@ -4,12 +4,14 @@
* @author Naomi Carrigan * @author Naomi Carrigan
*/ */
import { Logger } from "@nhcarrigan/logger"; import type { Logger } from "@nhcarrigan/logger";
// import { Logger } from "@nhcarrigan/logger"; // Import { Logger } from "@nhcarrigan/logger";
// const logger = new Logger("Minori", process.env.LOG_TOKEN ?? ""); // Const logger = new Logger("Minori", process.env.LOG_TOKEN ?? "");
/* eslint-disable no-console -- Temporary mock logger for development */
/* eslint-disable @typescript-eslint/consistent-type-assertions -- Mock logger requires type assertion */
const logger = { const logger = {
error: (message: string, error: Error) => { error: (message: string, error: Error) => {
console.error(message, error); console.error(message, error);
@@ -18,5 +20,6 @@ const logger = {
console.log(level, message); console.log(level, message);
}, },
} as unknown as Logger; } as unknown as Logger;
/* eslint-enable no-console, @typescript-eslint/consistent-type-assertions -- Re-enable rules after mock logger */
export { logger }; export { logger };