mirror of
https://github.com/tiennm99/litellm.git
synced 2026-06-17 22:48:35 +00:00
a12a2190d7
Stragglers from the 2026-04-21 Python 3.12 standardization: - .github/workflows/check_duplicate_issues.yml (was 3.11) - .github/workflows/llm-translation-testing.yml (was 3.11) - .github/workflows/scan_duplicate_issues.yml (was 3.13) - .circleci proxy_build_from_pip_tests (was 3.13) The only intentional non-3.12 CI job is installing_litellm_on_python_3_13, which exists as an explicit "latest supported Python" smoke matrix.
54 lines
1.7 KiB
YAML
54 lines
1.7 KiB
YAML
name: Check Duplicate Issues
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
check-duplicate:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
contents: read
|
|
steps:
|
|
- name: Check for potential duplicates
|
|
uses: wow-actions/potential-duplicates@4d4ea0352e0383859279938e255179dd1dbb67b5 # v1.1.0
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
label: potential-duplicate
|
|
threshold: 0.6
|
|
reaction: eyes
|
|
comment: |
|
|
**⚠️ Potential duplicate detected**
|
|
|
|
This issue appears similar to existing issue(s):
|
|
{{#issues}}
|
|
- [#{{number}}]({{html_url}}) - {{title}} ({{accuracy}}% similar)
|
|
{{/issues}}
|
|
|
|
Please review the linked issue(s) to see if they address your concern. If this is not a duplicate, please provide additional context to help us understand the difference.
|
|
|
|
- name: Checkout close script
|
|
if: github.event.action == 'opened'
|
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
with:
|
|
sparse-checkout: .github/scripts
|
|
persist-credentials: false
|
|
|
|
- name: Set up Python
|
|
if: github.event.action == 'opened'
|
|
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
|
with:
|
|
python-version: "3.12"
|
|
|
|
- name: Auto-close if high-confidence duplicate
|
|
if: github.event.action == 'opened'
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
python3 .github/scripts/close_duplicate_issues.py \
|
|
--issue-number ${{ github.event.issue.number }} \
|
|
--repo ${{ github.repository }} \
|
|
--threshold 0.85 \
|
|
--close
|