diff --git a/src/index.ts b/src/index.ts index 91881076..186c4bdd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,7 +3,7 @@ import * as github from '@actions/github'; import { BranchProtectionService } from './branchprotection/BranchProtectionService'; import { CyDigConfig } from './types/CyDigConfig'; import { getContentOfFile } from './helpfunctions/JsonService'; -import { PentestService } from './pentest/PentestService'; +import { PentestService } from './Pentest/PentestService'; import { ThreatModelingService } from './threatmodeling/ThreatModelingService'; /** * The main function for the action. diff --git a/src/threatmodeling/ThreatModelingService.ts b/src/threatmodeling/ThreatModelingService.ts index 5a47f07e..5a8e9cb8 100644 --- a/src/threatmodeling/ThreatModelingService.ts +++ b/src/threatmodeling/ThreatModelingService.ts @@ -2,7 +2,7 @@ import * as core from '@actions/core'; import * as github from '@actions/github'; export class ThreatModelingService { public static async getStateOfThreatModeling(threatModelingDate: { date: string; boardsTag: string }): Promise { - console.log('Running Threat Modeling Controls'); + //console.log('Running Threat Modeling Controls'); if (!threatModelingDate.date || threatModelingDate.date === 'date-of-threat-modeling') { core.warning('Threat Modeling Date is not set!'); @@ -10,6 +10,6 @@ export class ThreatModelingService { } core.exportVariable('threatModelingDate', threatModelingDate.date); - console.log('threatModelingDate is set', threatModelingDate.date); + //console.log('threatModelingDate is set', threatModelingDate.date); } }