From ca6b3977834889f56d03356061394ca80f3520c6 Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Tue, 15 Oct 2019 22:56:45 +0200 Subject: meta: remove automatic bug label on bug reports People sometimes use the bug report template for things that are support. Maintainers will confirm whether it's a bug with the appropriate label. --- .github/ISSUE_TEMPLATE/bug_report.md | 1 - 1 file changed, 1 deletion(-) (limited to '.github/ISSUE_TEMPLATE/bug_report.md') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index ff55f36be..076c35544 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,6 @@ --- name: Bug report about: Create a report to help us improve -labels: 'Type: bug' --- -- cgit v1.2.3-70-g09d2 From beab76edfce3500b2fb357c69f3d4fb2a17898fe Mon Sep 17 00:00:00 2001 From: Larson Carter Date: Fri, 13 Dec 2019 08:18:25 -0600 Subject: Update issues and PR templates (#8471) Closes #8471 --- .github/ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++---------------- .github/ISSUE_TEMPLATE/feature_request.md | 10 +++++----- .github/ISSUE_TEMPLATE/support.md | 2 -- .github/PULL_REQUEST_TEMPLATE.md | 17 ++++++++++++++++ 4 files changed, 37 insertions(+), 24 deletions(-) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md (limited to '.github/ISSUE_TEMPLATE/bug_report.md') diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 076c35544..7c1cb8967 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,7 @@ --- name: Bug report -about: Create a report to help us improve +about: Create a report to help us improve Oh My Zsh +labels: 'Type: support' --- @@ -10,29 +11,26 @@ an issue where no sections have been filled will be deleted without comment. --> **Describe the bug** - +A clear description of what the bug is. **To Reproduce** - **Expected behavior** - +A brief description of what should happen. -**Screenshots or recordings** - +**Screenshots and/or Recordings** +If applicable, add screenshots to help explain your problem. +You can also record an asciinema session: https://asciinema.org/ -**System:** - - OS: [e.g. macOS] - - Zsh version [e.g. 5.6] +**Desktop (please complete the following information):** + - OS / Distro: [e.g. Arch Linux, macOS] + - Latest ohmyzsh Update?: [e.g. Yes/No] + - ZSH Version: [e.g. 5.6] - Terminal emulator [e.g. iTerm2] **Additional context** - +Add any other context about the problem here. This can be themes, plugins, custom configs. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index d9c324a55..346eabaea 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -11,16 +11,16 @@ an issue where no sections have been filled will be deleted without comment. --> **Is your feature request related to a particular plugin or theme? If so, specify it.** - +The name of the plugin or theme that you would like us to improve. [...] **Is your feature request related to a problem? Please describe.** - +A description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** - +A description of what you want to happen. **Describe alternatives you've considered** - +A description of any alternative solutions or features you've considered. This can also include other plugins or aliases. **Additional context** - +Add any other context or screenshots about the feature request here. Also if you have any PRs related to this issue that are already open that you would like us to look at. diff --git a/.github/ISSUE_TEMPLATE/support.md b/.github/ISSUE_TEMPLATE/support.md index 3c69a7d5e..d2638412e 100644 --- a/.github/ISSUE_TEMPLATE/support.md +++ b/.github/ISSUE_TEMPLATE/support.md @@ -5,8 +5,6 @@ labels: 'Type: support' --- - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..6bcb90efe --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,17 @@ +## Standards checklist: + +- [ ] The PR title is descriptive. +- [ ] The PR doesn't replicate another PR which is already open. +- [ ] I have read the contribution guide and followed all the instructions. +- [ ] The code follows the code style guide detailed in the wiki. +- [ ] The code is mine or it's from somewhere with an MIT-compatible license. +- [ ] The code is efficient, to the best of my ability, and does not waste computer resources. +- [ ] The code is stable and I have tested it myself, to the best of my abilities. + +## Changes: + +- [...] + +## Other comments: + +... -- cgit v1.2.3-70-g09d2