From 7ef483a7f11a0bd603e4455a495e6fcecb573e02 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Thu, 3 Dec 2020 19:38:56 +1100 Subject: [PATCH] add potential duplicates workflow + declare window variable with let as per https://github.com/notion-enhancer/notion-enhancer/issues/298#issuecomment-737749264 --- .github/workflows/potential-duplicates.yml | 26 ++++++++++++++++++++++ mods/core/createWindow.js | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/potential-duplicates.yml diff --git a/.github/workflows/potential-duplicates.yml b/.github/workflows/potential-duplicates.yml new file mode 100644 index 0000000..dce768d --- /dev/null +++ b/.github/workflows/potential-duplicates.yml @@ -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}} diff --git a/mods/core/createWindow.js b/mods/core/createWindow.js index 1b14aa6..91ef38d 100644 --- a/mods/core/createWindow.js +++ b/mods/core/createWindow.js @@ -40,7 +40,7 @@ module.exports = (store, __exports) => { rect.width = focused_window.getSize()[0]; rect.height = focused_window.getSize()[1]; } - const window = new electron.BrowserWindow({ + let window = new electron.BrowserWindow({ show: false, backgroundColor: '#ffffff', titleBarStyle: 'hiddenInset',