From 167e0a9109c505d7530564e55e6813228e9ffdca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Mon, 11 Oct 2021 17:17:28 +0100 Subject: [PATCH] feat(actions): add issue dup checker action --- .github/workflows/duplicates.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/duplicates.yml diff --git a/.github/workflows/duplicates.yml b/.github/workflows/duplicates.yml new file mode 100644 index 000000000..c0cb3de1f --- /dev/null +++ b/.github/workflows/duplicates.yml @@ -0,0 +1,11 @@ +name: Potential Duplicates +on: + issues: + types: [opened, edited] +jobs: + run: + runs-on: ubuntu-20.04 + steps: + - uses: wow-actions/potential-duplicates@v1.0.8 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}