From ffd940aaff1329ebf75909be242d68431f7fa009 Mon Sep 17 00:00:00 2001 From: Brian Bunke Date: Sat, 30 Dec 2017 22:07:44 -0800 Subject: [PATCH] Add GitHub templates --- .github/CONTRIBUTING.md | 13 +++++++++++++ .github/ISSUE_TEMPLATE.md | 32 ++++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 24 ++++++++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..00a5bcd --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,13 @@ +## Contributing to ArrayList + +Hi! We want you to contribute to this project. + +We strive to be friendly, welcoming, and collaborative with everyone. +We ask that you do the same, and help keep this text short and sweet :D + +### GitHub walkthrough + +Unsure about how to perform any of the steps? Feel free to ask questions! + +If you'd rather figure it out silently, there are a ton of GitHub 101 walkthroughs. +Here's a PowerShell-flavored one: http://www.brianbunke.com/blog/2017/05/08/github-101/ diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..153ef1f --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,32 @@ + + + +### Expected Behavior + + + +### Current Behavior + + + +### Possible Solution + + + +### Steps to Reproduce (for bugs) + +1. +2. +3. +4. + +### Context + + +### Your Environment + + +> ```posh +> (Get-Module ArrayList -ListAvailable).Version +> $PSVersionTable +> ``` diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..c3f8954 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,24 @@ + + +### Description + + +### Motivation and Context + + + + + + +### 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) + +### Checklist: + + +- [ ] My code follows the code style of this project. +- [ ] I have added Pester Tests that describe what my changes should do. +- [ ] I have updated the documentation accordingly.