From 7d461a8dfcff50a41a9ee5db82ceddc8fbae94a8 Mon Sep 17 00:00:00 2001 From: ohemorange Date: Fri, 28 Mar 2025 09:41:50 -0700 Subject: [PATCH] Add template for code maintenance task (#10251) We need this to create issues to track work like "update venv.py to address upcoming pip build system deprecation" since we no longer have a blank issue template. --- .github/ISSUE_TEMPLATE/task.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/task.yaml diff --git a/.github/ISSUE_TEMPLATE/task.yaml b/.github/ISSUE_TEMPLATE/task.yaml new file mode 100644 index 000000000..e9861de7f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/task.yaml @@ -0,0 +1,15 @@ +name: Task +description: A codebase upkeep task such as managing deprecations and refactoring +title: "[Task]: " +type: Task +body: + - type: textarea + id: problem + attributes: + label: Task description + description: Describe the work that needs to happen, and why. + placeholder: > + For example, "In issue [link here], we noted that we cannot update [dependency] until + [something happens]. That thing has happened, so now we should update [dependency]." + validations: + required: true