Skip to content

Commit 9cda61b

Browse files
committed
remove console.logs
1 parent 7ba1e07 commit 9cda61b

2 files changed

Lines changed: 0 additions & 5 deletions

File tree

.github/actions/file/src/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,10 @@ export default async function () {
5959
let response: OctokitResponse<IssueResponse> | undefined
6060
try {
6161
if (isResolvedFiling(filing)) {
62-
console.log('resolved filing, closing')
6362
// Close the filing’s issue (if necessary)
6463
response = await closeIssue(octokit, new Issue(filing.issue))
6564
filing.issue.state = 'closed'
6665
} else if (isNewFiling(filing)) {
67-
console.log('new filing, opening')
68-
6966
// Open a new issue for the filing
7067
response = await openIssue(octokit, repoWithOwner, filing.findings[0], screenshotRepo)
7168
;(filing as Filing).issue = {state: 'open'} as Issue
@@ -82,7 +79,6 @@ export default async function () {
8279
})
8380
}
8481
} else if (isRepeatedFiling(filing)) {
85-
console.log('repeated filing, updating issue with new findings')
8682
// Reopen the filing's issue (if necessary) and update the body with the latest finding
8783
response = await reopenIssue(
8884
octokit,

.github/actions/find/src/scansContextProvider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export function getScansContext() {
2828
}
2929
}
3030

31-
console.log(JSON.stringify(scansContext, null, 2))
3231
return scansContext
3332
}
3433

0 commit comments

Comments
 (0)