Files
yishentu--claudian/.github/workflows/duplicate-issues.yml
T
wehub-resource-sync 2771cff92b
CI / lint (push) Failing after 1s
CI / typecheck (push) Failing after 2s
CI / build (push) Has been skipped
CI / test (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:22:56 +08:00

23 lines
591 B
YAML

name: Potential Duplicates
on:
issues:
types: [opened, edited]
jobs:
check-duplicates:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/potential-duplicates@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
threshold: 0.6
state: all
label: possible-duplicate
comment: >
Possible duplicates found:
{{#issues}}
- #{{number}} ({{similarity}}% similar): {{title}}
{{/issues}}
If one of these matches your issue, please add your details there instead.