From b5ffbdb0b5afff5f39aa68011cb77fcf6f575eb4 Mon Sep 17 00:00:00 2001 From: Cassidy Williams Date: Thu, 23 Jan 2025 13:49:25 -0600 Subject: [PATCH] Add triage command for issues --- .github/commands/triage.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/commands/triage.yml diff --git a/.github/commands/triage.yml b/.github/commands/triage.yml new file mode 100644 index 0000000..6760d8e --- /dev/null +++ b/.github/commands/triage.yml @@ -0,0 +1,22 @@ +trigger: triage +title: Triage Issue +description: Explain the status of your triaging this particular issue. +surfaces: + - issue +steps: + - type: dropdown + id: status + label: Triage Status + description: Select the current triage status of this issue + options: + - label: "🔴 Not Started" + value: red + - label: "🟡 In Progress" + value: yellow + - label: "🟢 Complete" + value: green + - type: textarea + id: description + label: Triage Notes + description: Describe what has been done to triage this issue + required: true