Skip to content

Commit 1724a65

Browse files
committed
docs: remove similar issues tool from documentation
1 parent 6883ced commit 1724a65

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ ___
147147
\
148148
**Update Changelog ([`/update_changelog`](https://qodo-merge-docs.qodo.ai/tools/update_changelog/))**: Automatically updating the CHANGELOG.md file with the PR changes.
149149
\
150-
**Find Similar Issue ([`/similar_issue`](https://qodo-merge-docs.qodo.ai/tools/similar_issues/))**: Automatically retrieves and presents similar issues.
151-
\
152150
**Add Documentation 💎 ([`/add_docs`](https://qodo-merge-docs.qodo.ai/tools/documentation/))**: Generates documentation to methods/functions/classes that changed in the PR.
153151
\
154152
**Generate Custom Labels 💎 ([`/generate_labels`](https://qodo-merge-docs.qodo.ai/tools/custom_labels/))**: Generates custom labels for the PR, based on specific guidelines defined by the user.

docs/docs/tools/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Here is a list of Qodo Merge tools, each with a dedicated page that explains how
99
| **[Code Suggestions (`/improve`](./improve.md))** | Code suggestions for improving the PR |
1010
| **[Question Answering (`/ask ...`](./ask.md))** | Answering free-text questions about the PR, or on specific code lines |
1111
| **[Update Changelog (`/update_changelog`](./update_changelog.md))** | Automatically updating the CHANGELOG.md file with the PR changes |
12-
| **[Find Similar Issue (`/similar_issue`](./similar_issues.md))** | Automatically retrieves and presents similar issues |
1312
| **[Help (`/help`](./help.md))** | Provides a list of all the available tools. Also enables to trigger them interactively (💎) |
1413
| **💎 [Add Documentation (`/add_docs`](./documentation.md))** | Generates documentation to methods/functions/classes that changed in the PR |
1514
| **💎 [Generate Custom Labels (`/generate_labels`](./custom_labels.md))** | Generates custom labels for the PR, based on specific guidelines defined by the user |

docs/mkdocs.yml

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ nav:
2828
- Improve: 'tools/improve.md'
2929
- Ask: 'tools/ask.md'
3030
- Update Changelog: 'tools/update_changelog.md'
31-
- Similar Issues: 'tools/similar_issues.md'
3231
- Help: 'tools/help.md'
3332
- 💎 Analyze: 'tools/analyze.md'
3433
- 💎 Test: 'tools/test.md'

pr_agent/tools/pr_help_message.py

-2
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ async def run(self):
214214
tool_names.append(f"[IMPROVE COMPONENT]({base_path}/improve_component/) 💎")
215215
tool_names.append(f"[ANALYZE]({base_path}/analyze/) 💎")
216216
tool_names.append(f"[ASK]({base_path}/ask/)")
217-
tool_names.append(f"[SIMILAR ISSUE]({base_path}/similar_issues/)")
218217
tool_names.append(f"[GENERATE CUSTOM LABELS]({base_path}/custom_labels/) 💎")
219218
tool_names.append(f"[CI FEEDBACK]({base_path}/ci_feedback/) 💎")
220219
tool_names.append(f"[CUSTOM PROMPT]({base_path}/custom_prompt/) 💎")
@@ -246,7 +245,6 @@ async def run(self):
246245
commands.append("`/improve_component`")
247246
commands.append("`/analyze`")
248247
commands.append("`/ask`")
249-
commands.append("`/similar_issue`")
250248
commands.append("`/generate_labels`")
251249
commands.append("`/checks`")
252250
commands.append("`/custom_prompt`")

0 commit comments

Comments
 (0)