mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
chore: Add GitHub Actions for AI-powered issue and PR management (#3886)
This commit is contained in:
parent
3648f2d54b
commit
92733e6368
5 changed files with 174 additions and 0 deletions
26
.github/workflows/models_dedupe.yml
vendored
Normal file
26
.github/workflows/models_dedupe.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue