mirror of https://github.com/Lissy93/dashy.git
🏗️ Adds action to check for duplicate issues
This commit is contained in:
parent
6c421e0b07
commit
de76deaa57
|
@ -0,0 +1,22 @@
|
||||||
|
# Attempts to auto-detect weather an issue is a duplicate, and adds a comment
|
||||||
|
name: 🎯 Issue Duplicate Check
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened, edited]
|
||||||
|
jobs:
|
||||||
|
check-duplicate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: wow-actions/potential-duplicates@v1
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
filter: ''
|
||||||
|
exclude: '[BUG] [QUESTION] [FEEDBACK] [SHOWCASE]'
|
||||||
|
label: '🕸️ Potential Duplicate'
|
||||||
|
state: all
|
||||||
|
threshold: 0.6
|
||||||
|
reactions: 'eyes'
|
||||||
|
comment: >
|
||||||
|
Potential duplicates: {{#issues}}
|
||||||
|
- [#{{ number }}] {{ title }} ({{ accuracy }}%)
|
||||||
|
{{/issues}}
|
Loading…
Reference in New Issue