From dee31f0aa4d01e29a6471619601cdaadb295cdcf Mon Sep 17 00:00:00 2001 From: Sarah Edwards Date: Wed, 3 Mar 2021 10:22:50 -0800 Subject: [PATCH] Create projectStatus.yml --- .github/commands/projectStatus.yml | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/commands/projectStatus.yml diff --git a/.github/commands/projectStatus.yml b/.github/commands/projectStatus.yml new file mode 100644 index 0000000000..4a151089fe --- /dev/null +++ b/.github/commands/projectStatus.yml @@ -0,0 +1,34 @@ +trigger: project_status +title: Project status +description: Update the team on your project's status. +surfaces: +- issue +steps: +- type: menu + id: project + label: Project name + options: + - Technical Debt + - Add Widget + - Bug Bash +- type: form + style: embedded + body: + - type: dropdown + attributes: + label: Color + description: What's the status of your project? + options: + - label: 🟢 Green + value: 🟢 + - label: 🟡 Yellow + value: 🟡 + - label: 🔴 Red + value: 🔴 + - type: textarea + attributes: + label: Details + description: What should the team know about the status of your project? + placeholder: Recent achievements, blockers, requests for help, etc. +- type: fill + template: "The {{ data.project }} project is status {{ data.Color }}. {{ data.Details }}"