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

Commit

Permalink
increase default max files limit (#40)
Browse files Browse the repository at this point in the history
<!-- 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 -->
  • Loading branch information
harjotgill authored Mar 17, 2023
1 parent f91d299 commit 154848a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
max_files:
required: false
description: 'Max files to review. Less than or equal to 0 means no limit.'
default: '40'
default: '80'
temperature:
required: false
description: 'Temperature for GPT model'
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class Options {

constructor(
debug: boolean,
max_files = '40',
max_files = '80',
review_comment_lgtm = false,
path_filters: string[] | null = null,
system_message = '',
Expand Down

0 comments on commit 154848a

Please sign in to comment.