mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
+ declare window variable with let as per https://github.com/notion-enhancer/notion-enhancer/issues/298#issuecomment-737749264
27 lines
1019 B
YAML
27 lines
1019 B
YAML
name: potential duplicates
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: bubkoo/potential-duplicates@v1
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# Label to set, when potential duplicates are detected.
|
|
label: potential-duplicate
|
|
# Get issues with state to compare. Supported state: 'all', 'closed', 'open'.
|
|
state: all
|
|
# If similarity is higher than this threshold([0,1]), issue will be marked as duplicate.
|
|
threshold: 0.6
|
|
# Reactions to be add to comment when potential duplicates are detected.
|
|
# Available reactions: "-1", "+1", "confused", "laugh", "heart", "hooray", "rocket", "eyes"
|
|
reactions: 'confused'
|
|
# Comment to post when potential duplicates are detected.
|
|
comment: >
|
|
potential duplicates:
|
|
{{#issues}}
|
|
- [#{{ number }}] {{ title }} ({{ accuracy }}%)
|
|
{{/issues}}
|