Revert duplicate issue checker to text-based matching#21961
Conversation
…te PR workflow Remove the Claude Code-powered duplicate PR detection workflow and revert the duplicate issue checker back to wow-actions/potential-duplicates with text similarity matching.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR reverts the duplicate issue detection workflow from a Claude Code AI-powered approach back to the original Confidence Score: 4/5
|
| Filename | Overview |
|---|---|
| .github/workflows/check_duplicate_issues.yml | Reverts from Claude Code AI-powered duplicate issue detection back to the original wow-actions/potential-duplicates@v1 text similarity matching. The new file is identical to the original version from commit 37c014c. Adds edited event trigger alongside opened. |
| .github/workflows/check_duplicate_prs.yml | Deletes the Claude Code-powered duplicate PR detection workflow entirely. This removes a dependency on LITELLM_VIRTUAL_KEY and LITELLM_BASE_URL secrets and the @anthropic-ai/claude-code npm package for PR dedup. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Issue Opened/Edited] --> B[check_duplicate_issues.yml]
B --> C["wow-actions/potential-duplicates@v1"]
C --> D{Text Similarity >= 0.6?}
D -->|Yes| E[Add 'potential-duplicate' label]
E --> F[Post comment with similar issues]
F --> G[Add 'eyes' reaction]
D -->|No| H[No action taken]
style A fill:#f9f,stroke:#333
style C fill:#bbf,stroke:#333
style E fill:#bfb,stroke:#333
style H fill:#fbb,stroke:#333
Last reviewed commit: 079ff24
…e_workflows Revert duplicate issue checker to text-based matching
Relevant issues
Pre-Submission checklist
Please complete all items before asking a LiteLLM maintainer to review your PR
tests/litellm/directory, Adding at least 1 test is a hard requirement - see detailsmake test-unit@greptileaiand received a Confidence Score of at least 4/5 before requesting a maintainer reviewCI (LiteLLM team)
Branch creation CI run
Link:
CI run for the last commit
Link:
Merge / cherry-pick CI run
Links:
Type
Changes
Remove the Claude Code-powered duplicate PR detection workflow and revert the duplicate issue checker back to wow-actions/potential-duplicates with text similarity matching.