diff --git a/.github/ISSUE_TEMPLATE/AskQuestion.md b/.github/ISSUE_TEMPLATE/AskQuestion.md new file mode 100644 index 0000000..38b8408 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/AskQuestion.md @@ -0,0 +1,18 @@ +--- +name: Ask Question +about: Do you have a question? +--- + +STOP RIGHT HERE - DO NOT CREATE A TICKET FOR A QUESTION ON THIS REPOSITORY + +1. Start with https://docs.chocolatey.org/en-us/troubleshooting (Troubleshooting) and https://docs.chocolatey.org/en-us/faqs (FAQs) to see if your question or issue already has an answer. You can also explore https://docs.chocolatey.org/en-us/ (which are pretty comprehensive, but not always the most searchable). +2. If not found or resolved, please see https://chocolatey.org/support to see what avenues are available to you based on whether you are an open source user or a licensed customer (have a commercial edition). + + +The best routes for getting questions answered when the documentation doesn't serve what you need is the mailing list or in chat: +- email - http://groups.google.com/group/chocolatey +- chat - https://gitter.im/chocolatey/choco + + + +NOTE: Keep in mind we have a [Code of Conduct](./CODE_OF_CONDUCT.md) that we expect folks to observe when they are looking for support in the Chocolatey community. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..ac2e8b4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/zFeatureRequest.md b/.github/ISSUE_TEMPLATE/zFeatureRequest.md new file mode 100644 index 0000000..36edd5d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/zFeatureRequest.md @@ -0,0 +1,10 @@ +--- +name: Enhancement / Feature Request +about: Is there additional functionality you would love us to consider? +--- + + diff --git a/.github/ISSUE_TEMPLATE/zReportIssue.md b/.github/ISSUE_TEMPLATE/zReportIssue.md new file mode 100644 index 0000000..2afb536 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/zReportIssue.md @@ -0,0 +1,55 @@ +--- +name: Report Issue +about: Did you find unexpected behavior? +--- + + + +### What You Are Seeing? + +### What is Expected? + +### How Did You Get This To Happen? (Steps to Reproduce) + +### System Details + +* OS Build (In PowerShell run `[System.Environment]::OSVersion.version.tostring()`): +* Windows PowerShell version (Run: `$PSVersionTable`): +* Chocolatey version (Run `choco --version`): + +### Output Log + + + +
+Full Log Output + +

+ +~~~sh +IF YOUR LOG CONTENT IS SHORT, PLACE IT HERE - WE NEED _ALL_ DETAILED OUTPUT BASED ON THE ABOVE TO BE ABLE TO PROVIDE SUPPORT (YOU WILL FIND THAT IN THE $env:ChocolateyInstall\logs\chocolatey.log between the `=====`) +IF YOUR LOG CONTENT IS LONG, PLEASE LINK TO A GIST (see https://docs.github.com/en/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists) +~~~ + +

+ +
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..cf4a08a --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,63 @@ + + +## Description Of Changes + + +## Motivation and Context + + +## Testing + + +## Change Types Made + + +* [ ] Bug fix (non-breaking change) +* [ ] Feature / Enhancement (non-breaking change) +* [ ] Breaking change (fix or feature that could cause existing functionality to change) +* [ ] PowerShell code changes. + +## Related Issue + + +Fixes # + +## Change Checklist + +* [ ] Requires a change to the documentation +* [ ] Documentation has been updated +* [ ] Tests to cover my changes, have been added +* [ ] All new and existing tests passed. +* [ ] PowerShell v2 compatibility checked. + +