3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-20 20:05:51 +00:00

assign every new issue to copilot by default

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2026-03-17 12:09:01 -10:00
parent a252121945
commit 0461e010bb

20
.github/workflows/copilot-autofix.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Copilot Autofix on New Issue
on:
issues:
types: [opened]
jobs:
assign-to-copilot:
# Only trigger on issues with the 'copilot-autofix' label
if: contains(github.event.issue.labels.*.name, 'copilot-autofix')
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Assign issue to Copilot
run: |
gh issue edit "$ISSUE" --add-assignee copilot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE: ${{ github.event.issue.number }}