From c8aec4a1528c04421c9df4266d4f96b6eebf2ea4 Mon Sep 17 00:00:00 2001 From: Jo Lynne Rokita Date: Tue, 6 Oct 2020 15:43:09 -0400 Subject: [PATCH] update issue and PR templates change report an issue to bug and propose analysis to feature request, fix typos --- .github/ISSUE_TEMPLATE/feature-request.md | 27 +++++++++++++++++++ .github/ISSUE_TEMPLATE/propose-an-analysis.md | 27 ------------------- .github/ISSUE_TEMPLATE/report-issue.md | 10 +++---- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 4 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md delete mode 100644 .github/ISSUE_TEMPLATE/propose-an-analysis.md diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..363e6ff --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,27 @@ +--- +name: Request a feature +about: Use this issue template to request a feature or analysis +title: 'Feature request:' +labels: enhancement +assignees: '' + +--- + + + +### Purpose/implementation Section + +#### Briefly descibe the feature and provide meaningful references + + +#### What input data are required for this feature or analysis? + + +#### How do you plan to organise the feature or analysis - will it be a multi-function call or add to existing functions? + + +#### Who will complete the feature request (please add a GitHub handle here if relevant)? + + + + diff --git a/.github/ISSUE_TEMPLATE/propose-an-analysis.md b/.github/ISSUE_TEMPLATE/propose-an-analysis.md deleted file mode 100644 index 744a0ef..0000000 --- a/.github/ISSUE_TEMPLATE/propose-an-analysis.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Propose an analysis -about: Use this issue template to propose a new analysis -title: 'Proposed Analysis:' -labels: proposed analysis -assignees: '' - ---- - - - -### Purpose/implementation Section - -#### Briefly descibe the analysis and provide meaningful references - - -#### What input data are required for this analysis? - - -#### How do you plan to organise the analysis, will it be a multi function call or add to existsing functions? - - -#### Who will complete the analysis (please add a GitHub handle here if relevant)? - - - - diff --git a/.github/ISSUE_TEMPLATE/report-issue.md b/.github/ISSUE_TEMPLATE/report-issue.md index c8167c9..97c633e 100644 --- a/.github/ISSUE_TEMPLATE/report-issue.md +++ b/.github/ISSUE_TEMPLATE/report-issue.md @@ -1,19 +1,19 @@ --- -name: Report an issue +name: Report an issue or bug about: Use this to ask a question about or report an issue with annoFuse -title: 'Report an issue' -labels: Report an issue +title: 'Bug:' +labels: bug assignees: '' --- -#### Provide the command used or report your issue here +#### Provide the command used or report the bug here #### What version are you using? -#### Add error message here +#### Add error message here (if applicable) #### Add Session info diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d15b06d..fa80839 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,7 +2,7 @@ ### Purpose/implementation Section -#### What feature is being added ? +#### What feature is being added or bug is being addressed? #### What was your approach?