From 83bec86fe2643b9d186d21bcdff784df54515b07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Bokvad=20Engar=C3=A5s?= Date: Tue, 26 Sep 2023 15:20:42 +0200 Subject: [PATCH] refactor project --- src/branchprotection/BranchProtectionService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/branchprotection/BranchProtectionService.ts b/src/branchprotection/BranchProtectionService.ts index 8f6b416f..f0c3515d 100644 --- a/src/branchprotection/BranchProtectionService.ts +++ b/src/branchprotection/BranchProtectionService.ts @@ -23,7 +23,7 @@ export class BranchProtectionService { }) .catch((error: any) => { console.log('Branch protections is not enabled for repository: ' + repo); - console.log('Error: ', error?.message); + console.log('Error: ', error); }); core.exportVariable('numberOfReviewers', numberOfReviewers); }