Skip to content

Commit

Permalink
formatが間違ってたので直してあげたよ!
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 17, 2024
1 parent 7ab60f1 commit 687ef08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/remove_prs_and_issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ export async function script(github: InstanceType<typeof GitHub>) {
);

if (projectData === null || projectData.length < 3) {
throw new Error(`PROJECT_URL format is invalid. projectData: ${JSON.stringify(projectData)}`);
throw new Error(
`PROJECT_URL format is invalid. projectData: ${JSON.stringify(projectData)}`,
);
}

let itemCursor: string | undefined = undefined;
Expand Down

0 comments on commit 687ef08

Please sign in to comment.