Fix linter.

This commit is contained in:
Christian Gunderman
2026-04-29 10:29:47 -07:00
parent 7faa50cbae
commit 8dbfe52e37
8 changed files with 8 additions and 8 deletions
@@ -27,7 +27,7 @@ try {
);
const response = JSON.parse(output);
if (response.errors) {
throw new Error(response.errors.map((e: any) => e.message).join(', '));
throw new Error(response.errors.map((e: { message: string }) => e.message).join(', '));
}
const count = response.data.repository.issues.totalCount;
console.log(`open_issues,${count}`);