From c12eb249cb5eb240b7f2358a90c9ee9a555bd05d Mon Sep 17 00:00:00 2001 From: Aiqiao Yan <55104035+aiqiaoy@users.noreply.github.com> Date: Mon, 15 Jun 2026 16:18:29 +0000 Subject: [PATCH] run prettier formatting --- src/unsafe-pr-checkout-helper.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/unsafe-pr-checkout-helper.ts b/src/unsafe-pr-checkout-helper.ts index 3e956f3..9d4c0d5 100644 --- a/src/unsafe-pr-checkout-helper.ts +++ b/src/unsafe-pr-checkout-helper.ts @@ -58,8 +58,7 @@ export function assertSafePrCheckout(input: IUnsafePrCheckoutInput): void { // if the resolved input points to the fork PR sha we have in the payload const repositoryMatchesPrHead = typeof prHeadRepoFullName === 'string' && - input.qualifiedRepository.toLowerCase() === - prHeadRepoFullName.toLowerCase() + input.qualifiedRepository.toLowerCase() === prHeadRepoFullName.toLowerCase() const refMatchesPullPattern = PR_REF_PATTERN.test(input.ref) const commitMatchesPrHeadSha = !!input.commit && prShas.includes(input.commit.toLowerCase())