From 1d6731692347dd535b27dc487165833857d1be75 Mon Sep 17 00:00:00 2001 From: yardasol Date: Mon, 25 Oct 2021 17:54:52 -0500 Subject: [PATCH 1/4] copy current saltproc PR and issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 31 +++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 16 ++++++++ .../pull_request_template.md | 38 +++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..406b9e9cfd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Report software bugs +title: "[Bug]: " +labels: Type:Bug +assignees: '' + +--- + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. +2. +3. +4. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**System Specifications:** + - Version: + - Platform: + - Subsystem: + +**How can this issue be closed?** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000..3fffba210a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: 'Feature: ' +labels: Status:1-New, Type:Feature +assignees: '' + +--- + +**Background and motivation** + +**Description of idea** + +**Implementation details** + +**Potential snags** diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 0000000000..40ec999d2e --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,38 @@ +## Summary of changes + + + + +## Types of changes + + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) + +## Required for Merging +- [ ] I have read the **CONTRIBUTING** document. +- [ ] My code follows the code style of this project. +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly. +- [ ] I have added tests to cover my changes. +- [ ] All new and existing tests passed. + - [ ] CI tests pass + - [ ] Local tests pass (including Serpent2 integration tests) + +## Associated Issues and PRs + + +- Issue: # + + +## Associated Developers + + +- Dev: @ + + +## Checklist for Reviewers + +Reviewers should use [this link](https://arfc.github.io/manual/guides/pull_requests) to get to the +Review Checklist before they begin their review. From a3aa5c7b48a0672df167b08027ec3f389b81f718 Mon Sep 17 00:00:00 2001 From: yardasol Date: Mon, 25 Oct 2021 17:56:13 -0500 Subject: [PATCH 2/4] update formatting --- .github/ISSUE_TEMPLATE/bug_report.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 406b9e9cfd..ce48accd20 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,25 +7,25 @@ assignees: '' --- -**Expected behavior** +## Expected behavior A clear and concise description of what you expected to happen. -**Describe the bug** +## Describe the bug A clear and concise description of what the bug is. -**To Reproduce** +## To Reproduce Steps to reproduce the behavior: 1. 2. 3. 4. -**Screenshots** -If applicable, add screenshots to help explain your problem. +## Screenshots/output +If applicable, add screenshots or program output to help explain your problem. -**System Specifications:** +## System Specifications: - Version: - Platform: - Subsystem: -**How can this issue be closed?** +## How can this issue be closed? From e44872db56f68c6e54e32f507202a281280d90d9 Mon Sep 17 00:00:00 2001 From: yardasol Date: Mon, 25 Oct 2021 17:56:50 -0500 Subject: [PATCH 3/4] update formatting --- .github/ISSUE_TEMPLATE/feature_request.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 3fffba210a..b4eff87996 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -7,10 +7,10 @@ assignees: '' --- -**Background and motivation** +## Background and motivation -**Description of idea** +## Description of idea -**Implementation details** +## Implementation details -**Potential snags** +## Potential snags From 4960bbb66e0a275eca5e90c39aa9b90279db2a6e Mon Sep 17 00:00:00 2001 From: yardasol Date: Mon, 25 Oct 2021 18:26:21 -0500 Subject: [PATCH 4/4] move pr template to where github can see it --- .github/{PULL_REQUEST_TEMPLATE => }/pull_request_template.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{PULL_REQUEST_TEMPLATE => }/pull_request_template.md (100%) diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/pull_request_template.md similarity index 100% rename from .github/PULL_REQUEST_TEMPLATE/pull_request_template.md rename to .github/pull_request_template.md