Skip to content

Commit fda2300

Browse files
committed
build: 📦 add issue deduplication check workflow
1 parent 1fe0e92 commit fda2300

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Detect duplicate issues
2+
3+
on:
4+
issues:
5+
types: [opened, reopened]
6+
7+
permissions:
8+
models: read
9+
issues: write
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.issue.number }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
continuous-triage-dedup:
17+
if: ${{ github.event.issue.user.type != 'Bot' }}
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: pelikhan/action-genai-issue-dedup@v0
21+
with:
22+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)