diff --git a/pr_agent/git_providers/local_git_provider.py b/pr_agent/git_providers/local_git_provider.py index e9aa7bbb..57680b59 100644 --- a/pr_agent/git_providers/local_git_provider.py +++ b/pr_agent/git_providers/local_git_provider.py @@ -41,7 +41,7 @@ class LocalGitProvider(GitProvider): self.description_path = settings.get('local.description_path') \ if settings.get('local.description_path') is not None else self.repo_path / 'description.md' self.review_path = settings.get('local.review_path') \ - if settings.get('local.review_path') is not None else self.repo_path / 'review_path.md' + if settings.get('local.review_path') is not None else self.repo_path / 'review.md' # inline code comments are not supported for local git repositories settings.pr_reviewer.inline_code_comments = False diff --git a/requirements.txt b/requirements.txt index 399cd3ab..51dc6fee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,3 +10,4 @@ python-gitlab==3.15.0 pytest~=7.4.0 aiohttp~=3.8.4 atlassian-python-api==3.39.0 +GitPython~=3.1.32 \ No newline at end of file