Skip to content

feat: enhanced Discord thread management (auto-thread, LLM naming, configurable archive) #11

feat: enhanced Discord thread management (auto-thread, LLM naming, configurable archive)

feat: enhanced Discord thread management (auto-thread, LLM naming, configurable archive) #11

Workflow file for this run

name: Issue Triage
on:
issues:
types: [opened]
workflow_dispatch:
inputs:
issue_number:
description: "Issue number to add needs-triage label"
required: true
type: number
jobs:
add-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$ISSUE_NUMBER" --add-label needs-triage --repo ${{ github.repository }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE_NUMBER: ${{ github.event.issue.number || github.event.inputs.issue_number }}