From 425c70e03e2ff4505b3ccdab7ea9bcd50a5c1971 Mon Sep 17 00:00:00 2001 From: Polina Shpilker Date: Wed, 25 Feb 2026 10:54:50 -0500 Subject: [PATCH 1/2] Create Feature Issue Template Create a new template for Issues that represents a new Feature. Automatically adds the `feature` tag to the issue, and adds it to the DataFed project under the `todo` column. --- .github/ISSUE_TEMPLATE/feature-template.md | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature-template.md diff --git a/.github/ISSUE_TEMPLATE/feature-template.md b/.github/ISSUE_TEMPLATE/feature-template.md new file mode 100644 index 000000000..153843e82 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-template.md @@ -0,0 +1,25 @@ +--- +name: Feature Template +about: Template for new features to DataFed +title: "[Feature] Feature Title" +labels: '' +assignees: '' + +--- + +--- +type: feature +projects: ['DataFed'] +--- + +# Feature Description + +Feature description here. + +# Functional Requirements + +- [ ] Checkboxes describing components of the feature. + +# Changes + +Changes to the feature as they occur. From 034d1b77b2e1158baa3d174cf21e00272a6c7ab9 Mon Sep 17 00:00:00 2001 From: Polina Shpilker Date: Wed, 25 Feb 2026 10:59:59 -0500 Subject: [PATCH 2/2] Update feature-template.md Combine GitHub's automated frontmatter yaml with custom frontmatter yaml --- .github/ISSUE_TEMPLATE/feature-template.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-template.md b/.github/ISSUE_TEMPLATE/feature-template.md index 153843e82..b4a0c0c91 100644 --- a/.github/ISSUE_TEMPLATE/feature-template.md +++ b/.github/ISSUE_TEMPLATE/feature-template.md @@ -1,14 +1,10 @@ --- name: Feature Template -about: Template for new features to DataFed +about: Template for issues describing new features to DataFed title: "[Feature] Feature Title" labels: '' assignees: '' - ---- - ---- -type: feature +type: 'feature' projects: ['DataFed'] ---