This commit is contained in:
dfrancis-adm
2019-04-25 10:55:56 -04:00
commit 72a469c9b7
27 changed files with 1170 additions and 0 deletions

40
.github/ISSUE_TEMPLATE/Bug_report.md vendored Normal file
View File

@@ -0,0 +1,40 @@
---
name: Bug report
about: Create a report to help us improve
---
**Prerequisites**
Put an X between the brackets on each line to confirm you have completed them:
- [ ] The issue is still present in the latest version of the module.
- [ ] The issue has not been previously reported.
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots or Transcripts**
If applicable, add screenshots or PowerShell transcripts to help explain your problem. You can use ```Start-Transcript``` and ```Stop-Transcript``` to record the steps you have performed.
**System Details**
- Operating System: [Windows | Linux | MacOS]
- Operating System Version (Version and Build, eg Windows 10 Build 1709):
- PowerShell Version: [Use ```Get-Host```]
- Architecture for PowerShell Session: [64bit | 32bit]
- Is this system an Azure Automation Worker?: [No, Hybrid Worker, Azure Worker]
- Other loaded modules: [Include the output of ```Get-Module```]
**Additional context**
Add any other context about the problem here. Is there any other information like system configuration or data that might help us understand the problem.

View File

@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Examples of how the solution would work**
Some simple PowerShell examples of how the solution would work.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

28
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

@@ -0,0 +1,28 @@
### Requirements
* This template is required. Any request that does not include enough information may be closed at the maintainers' discretion.
* Have you (put an X between the brackets on each line to confirm):
* [ ] Written new test cases to ensure no regression bugs occur?
* [ ] Ensured all test cases are now passing?
* [ ] Ensured that PowerShell Script Analyser issues and warnings are completely resolved?
* [ ] Updated any help or documentation that may be impacted by your changes?
### Description of the Change
[ We must be able to understand the design of your change from this description. If we cannot get a good idea of what the code will be doing from the description here, the pull request may be closed at the maintainers' discretion. Keep in mind that the maintainer reviewing this PR may not be familiar with or have worked with the code here recently, so please walk us through the concepts. ]
### Testing
[ Please describe the testing you have performed ]
### Associated/Resolved Issues
[ Enter any applicable issues here ]
> Note: By creating a pull request, you are expected to comply with this project's Code of Conduct.
<!--
This template is based upon the work by the Atom project, https://github.com/atom/atom/
-->