From 9ddc3a4c41d841bd539963895aa9e242e4a9dbe3 Mon Sep 17 00:00:00 2001 From: Kayla Cinnamon Date: Wed, 24 Sep 2025 13:08:23 -0400 Subject: [PATCH] Add workflow for automatic issue deduplication --- .../automatic-issue-deduplication.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/automatic-issue-deduplication.yml diff --git a/.github/workflows/automatic-issue-deduplication.yml b/.github/workflows/automatic-issue-deduplication.yml new file mode 100644 index 00000000..cdb01b79 --- /dev/null +++ b/.github/workflows/automatic-issue-deduplication.yml @@ -0,0 +1,19 @@ +name: Automatic New Issue Deduplication +on: + issues: + types: [opened, reopened] +permissions: + models: read + issues: write +concurrency: + group: ${{ github.workflow }}-${{ github.event.issue.number }} + cancel-in-progress: true +jobs: + deduplicate: + runs-on: ubuntu-latest + steps: + - name: Run Deduplicate Action + uses: pelikhan/action-genai-issue-dedup@v0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + label_as_duplicate: true \ No newline at end of file