From 49374d9380efeb58f6a9e5a47d9f7edeee253460 Mon Sep 17 00:00:00 2001 From: Mark Wallace <127216156+markwallace-microsoft@users.noreply.github.com> Date: Tue, 11 Jun 2024 18:33:48 +0100 Subject: [PATCH] Add issue template for feature graduation issues (#6594) ### Motivation and Context ### Description ### Contribution Checklist - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone :smile: --- .github/ISSUE_TEMPLATE/bug_report.md | 5 ++-- .github/ISSUE_TEMPLATE/feature_graduation.md | 29 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 3 +- 3 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/feature_graduation.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 374f1b3e5ac8..e2455f84be12 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,8 +1,9 @@ --- name: Bug report about: Create a report to help us improve -title: '' -labels: '' +title: 'Bug: ' +labels: ["bug"] +projects: ["semantic-kernel"] assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_graduation.md b/.github/ISSUE_TEMPLATE/feature_graduation.md new file mode 100644 index 000000000000..37d207ea1888 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_graduation.md @@ -0,0 +1,29 @@ +--- +name: Feature graduation +about: Plan the graduation of an experimental feature +title: 'Graduate XXX feature' +labels: ["feature_graduation"] +projects: ["semantic-kernel"] +assignees: '' + +--- + +--- +name: Feature graduation +about: Plan the graduation of an experimental feature + +--- + +Checklist to be completed when graduating an experimental feature + +- [ ] Notify PM's and EM's that feature is read for graduation +- [ ] Contact PM for list of sample use cases +- [ ] Verify there are sample implementations​ for each of the use cases +- [ ] Verify telemetry and logging are complete +- [ ] ​Verify API docs are complete and arrange to have them published +- [ ] Make appropriate updates to Learn docs​ +- [ ] Make appropriate updates to Concept samples +- [ ] Male appropriate updates to Blog posts +- [ ] Verify there are no serious open Issues​​ +- [ ] Update table in EXPERIMENTS.md +- [ ] Remove SKEXP​ flag from the experimental code diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 2d490077748e..3289535f2120 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,8 +1,9 @@ --- name: Feature request about: Suggest an idea for this project -title: '' +title: 'New Feature: ' labels: '' +projects: ["semantic-kernel"] assignees: '' ---