Skip to content

Commit

Permalink
[misc] Add automatic duplicate issue detection
Browse files Browse the repository at this point in the history
  • Loading branch information
pukkandan committed May 24, 2023
1 parent 4823ec9 commit 15b2d3d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/potential-duplicates.yml
@@ -0,0 +1,20 @@
name: Potential Duplicates
on:
issues:
types: [opened, edited]

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/potential-duplicates@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
label: potential-duplicate
state: all
threshold: 0.7
comment: |
This issue is potentially a duplicate of one of the following issues:
{{#issues}}
- #{{ number }} ({{ accuracy }}%)
{{/issues}}

0 comments on commit 15b2d3d

Please sign in to comment.