mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-13 03:15:17 +00:00
Renamed keep_user_description --> add_original_user_description
This commit is contained in:
parent
81c38f9646
commit
2b22f712fb
2 changed files with 2 additions and 2 deletions
|
|
@ -24,7 +24,7 @@ extra_instructions = ""
|
|||
|
||||
[pr_description] # /describe #
|
||||
publish_description_as_comment=false
|
||||
keep_user_description=false
|
||||
add_original_user_description=false
|
||||
extra_instructions = ""
|
||||
|
||||
[pr_questions] # /ask #
|
||||
|
|
|
|||
|
|
@ -147,7 +147,7 @@ class PRDescription:
|
|||
# Load the AI prediction data into a dictionary
|
||||
data = load_yaml(self.prediction.strip())
|
||||
|
||||
if get_settings().pr_description.keep_user_description and self.user_description:
|
||||
if get_settings().pr_description.add_original_user_description and self.user_description:
|
||||
data["User Description"] = self.user_description
|
||||
|
||||
# Initialization
|
||||
|
|
|
|||
Loading…
Reference in a new issue