Skip to content

Commit f03c192

Browse files
committed
Changes include_screenshots from true to false
1 parent a0e058e commit f03c192

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/find/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
include_screenshots:
1313
description: "Whether to capture screenshots of scanned pages and include links to them in the issue"
1414
required: false
15-
default: "true"
15+
default: "false"
1616

1717
outputs:
1818
findings:

.github/actions/find/src/findForUrl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {generateScreenshots} from './generateScreenshots.js'
77
export async function findForUrl(
88
url: string,
99
authContext?: AuthContext,
10-
includeScreenshots: boolean = true,
10+
includeScreenshots: boolean = false,
1111
): Promise<Finding[]> {
1212
const browser = await playwright.chromium.launch({
1313
headless: true,

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ inputs:
3434
include_screenshots:
3535
description: "Whether to capture screenshots and include links to them in the issue"
3636
required: false
37-
default: "true"
37+
default: "false"
3838

3939
outputs:
4040
results:

0 commit comments

Comments
 (0)