From 1119848aaa259a9e389472478c3a691672b1369e Mon Sep 17 00:00:00 2001 From: Theodor Date: Mon, 27 May 2024 10:42:24 +0200 Subject: [PATCH] fix format --- src/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 974f8814..eeca892a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -33,7 +33,12 @@ export async function run(): Promise { await CodeQualityService.getStateOfCodeQualityTool(cydigConfig.codeQualityTool); await SastService.getStateOfSastTool(cydigConfig.sastTool.nameOfTool, octokit, owner, repo); await ScaService.getStateOfScaTool(cydigConfig.scaTool.nameOfTool, octokit, owner, repo); - await SecretScanningService.getStateOfExposedSecrets(cydigConfig.secretScanningTool?.nameOfTool,octokit,owner,repo); + await SecretScanningService.getStateOfExposedSecrets( + cydigConfig.secretScanningTool?.nameOfTool, + octokit, + owner, + repo + ); await BranchProtectionService.getStateOfBranchProtection(octokit, owner, repo); await AccessToCodeService.setAccessToCodeFindings(octokit, owner, repo); await PentestService.getStateOfPentest(cydigConfig.pentest);