We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 989670b commit 3ab2cacCopy full SHA for 3ab2cac
pr_agent/algo/utils.py
@@ -229,6 +229,8 @@ def convert_to_markdown_v2(output_data: dict,
229
continue
230
relevant_file = issue.get('relevant_file', '').strip()
231
issue_header = issue.get('issue_header', '').strip()
232
+ if issue_header.lower() == 'possible bug':
233
+ issue_header = 'Possible Issue' # Make the header less frightening
234
issue_content = issue.get('issue_content', '').strip()
235
start_line = int(str(issue.get('start_line', 0)).strip())
236
end_line = int(str(issue.get('end_line', 0)).strip())
0 commit comments