mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
add potential duplicates workflow
+ declare window variable with let as per https://github.com/notion-enhancer/notion-enhancer/issues/298#issuecomment-737749264
This commit is contained in:
parent
26d3a702b5
commit
7ef483a7f1
26
.github/workflows/potential-duplicates.yml
vendored
Normal file
26
.github/workflows/potential-duplicates.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
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}}
|
@ -40,7 +40,7 @@ module.exports = (store, __exports) => {
|
|||||||
rect.width = focused_window.getSize()[0];
|
rect.width = focused_window.getSize()[0];
|
||||||
rect.height = focused_window.getSize()[1];
|
rect.height = focused_window.getSize()[1];
|
||||||
}
|
}
|
||||||
const window = new electron.BrowserWindow({
|
let window = new electron.BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
backgroundColor: '#ffffff',
|
backgroundColor: '#ffffff',
|
||||||
titleBarStyle: 'hiddenInset',
|
titleBarStyle: 'hiddenInset',
|
||||||
|
Loading…
Reference in New Issue
Block a user