summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 17:33:17 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 17:33:17 +0100
commit17d2e7e3f40fdcc123889993f0e92299a384f62d (patch)
treeec8b3ed44f56c5123e857d15f8e68b0deeae607b /.github
parentClean unnecessary param (diff)
downloadseven-wonders-17d2e7e3f40fdcc123889993f0e92299a384f62d.tar.gz
seven-wonders-17d2e7e3f40fdcc123889993f0e92299a384f62d.tar.bz2
seven-wonders-17d2e7e3f40fdcc123889993f0e92299a384f62d.zip
Avoid discord notification for duplicates
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/discord-closed-issues.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/discord-closed-issues.yml b/.github/workflows/discord-closed-issues.yml
index a4e20c06..ccf9af78 100644
--- a/.github/workflows/discord-closed-issues.yml
+++ b/.github/workflows/discord-closed-issues.yml
@@ -7,6 +7,7 @@ on:
jobs:
deploy:
+ if: ${{ !contains(github.event.issue.labels, "duplicate") && !contains(github.event.issue.labels, "wontfix") }}
runs-on: ubuntu-latest
steps:
- name: Send closed issue notif
bgstack15