Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.

Commit 9e6baf6

Browse files
authored
Update action.yml (#67)
<!-- This is an auto-generated comment: release notes by openai --> ### Summary by OpenAI Chore: Update default value of `max_files` input from 40 to 60 in `action.yml` and corresponding option in `Options` class constructor in `src/options.ts`. <!-- end of auto-generated comment: release notes by openai -->
1 parent d401c0b commit 9e6baf6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
max_files:
1313
required: false
1414
description: 'Max files to review. Less than or equal to 0 means no limit.'
15-
default: '40'
15+
default: '60'
1616
review_comment_lgtm:
1717
required: false
1818
description: 'Leave comments even if the patch is LGTM'

src/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export class Options {
205205

206206
constructor(
207207
debug: boolean,
208-
max_files = '40',
208+
max_files = '60',
209209
review_comment_lgtm = false,
210210
path_filters: string[] | null = null,
211211
system_message = '',

0 commit comments

Comments
 (0)