chore: Add GitHub Actions for AI-powered issue and PR management (#3886)

This commit is contained in:
James Rich 2025-12-02 19:45:10 -06:00 committed by GitHub
parent 3648f2d54b
commit 92733e6368
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 174 additions and 0 deletions

26
.github/workflows/models_dedupe.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Detect duplicate issues
on:
issues:
types: [opened, reopened]
permissions:
models: read
issues: write
concurrency:
group: ${{ github.workflow }}-${{ github.event.issue.number }}
cancel-in-progress: true
jobs:
continuous-triage-dedup:
if: ${{ github.event.issue.user.type != 'Bot' }}
runs-on: ubuntu-latest
steps:
- uses: pelikhan/action-genai-issue-dedup@v0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Optional tuning:
# labels: "auto" # compare within matching labels, or "bug,api"
# count: "20" # how many recent issues to check
# since: "90d" # look back window, supports d/w/m