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

Commit 154848a

Browse files
authored
increase default max files limit (#40)
<!-- This is an auto-generated comment: release notes by openai --> ### Summary by OpenAI **Release Notes** This pull request increases the default maximum number of files that can be processed by the software from 40 to 80. This change was made in the `src/options.ts` file. - New Feature: Increased default max files limit from 40 to 80. <!-- end of auto-generated comment: release notes by openai -->
1 parent f91d299 commit 154848a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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: '80'
1616
temperature:
1717
required: false
1818
description: 'Temperature for GPT model'

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/options.ts

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

150150
constructor(
151151
debug: boolean,
152-
max_files = '40',
152+
max_files = '80',
153153
review_comment_lgtm = false,
154154
path_filters: string[] | null = null,
155155
system_message = '',

0 commit comments

Comments
 (0)