chore(ci): update workflows for new triage system (#1217)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Darius Cepulis
2026-04-03 15:34:37 -05:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 6a4dbba2e4
commit c3327d18a0
3 changed files with 35 additions and 16 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Auto-label new issues
on:
issues:
types: [opened]
jobs:
add-triage:
if: github.event.issue.pull_request == null
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --add-label triage
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}