3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-24 13:18:55 +00:00

Create dedup.yml

This commit is contained in:
Nikolaj Bjorner 2025-06-13 07:59:31 -07:00 committed by GitHub
parent 8d1e954709
commit 638921457d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

19
.github/workflows/dedup.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: GenAI Find 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:
genai-issue-dedup:
runs-on: ubuntu-latest
steps:
- name: Run action-issue-dedup Action
uses: pelikhan/action-genai-issue-dedup@v0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_issue: ${{ github.event.issue.number }}