From 183ba09e1026ef28448e5db947c7954878e6d20e Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Wed, 10 Jun 2020 19:42:43 +0200 Subject: [PATCH 1/2] Add issue templates Issue templates will make it easier to categorise issues and get information faster. --- .github/ISSUE_TEMPLATE/bug_report.md | 38 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/discussion.md | 14 +++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 24 ++++++++++++++ .github/ISSUE_TEMPLATE/monitor-issue.md | 33 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/question.md | 14 +++++++++ 5 files changed, 123 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/discussion.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/monitor-issue.md create mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..c27b3256 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: 'Type: Bug' +assignees: '' + +--- + +**Checklist** + +- [ ] I have searched for existing issues +- [ ] I have looked through [the wiki](https://github.com/MonitorControl/MonitorControl/wiki) +- [ ] I have updated MonitorControl to the latest version + +**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** +If applicable, add screenshots to help explain your problem. + +**Additional context** +Add any other context about the problem here. + +**Environment Information (please complete the following information):** + - macOS version: + - MonitorControl version: + - Monitor(s): diff --git a/.github/ISSUE_TEMPLATE/discussion.md b/.github/ISSUE_TEMPLATE/discussion.md new file mode 100644 index 00000000..9cb26fa8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/discussion.md @@ -0,0 +1,14 @@ +--- +name: Discussion +about: I want to discuss something that is related to this project +title: '' +labels: 'Type: Other' +assignees: '' + +--- + +**Checklist** + +- [ ] I have searched for existing issues + +**Discussion** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..f8dac51a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,24 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: 'Type: Feature Request' +assignees: '' + +--- + +**Checklist** + +- [ ] I have searched for existing issues + +**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. + +**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. diff --git a/.github/ISSUE_TEMPLATE/monitor-issue.md b/.github/ISSUE_TEMPLATE/monitor-issue.md new file mode 100644 index 00000000..18b77650 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/monitor-issue.md @@ -0,0 +1,33 @@ +--- +name: Monitor Issue +about: MonitorControl is not working as expected on my Monitor +title: '' +labels: 'Type: Monitor Issue' +assignees: '' + +--- + +**Checklist** + +- [ ] I have searched for existing issues +- [ ] I have looked through [the Monitor Troubleshooting wiki](https://github.com/MonitorControl/MonitorControl/wiki/Monitor-Troubleshooting) +- [ ] I have updated MonitorControl to the latest version + +**Describe the issue** +A clear and concise description of the problem. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Additional context** +Add any other context about the problem here. + +**Environment Information (please complete the following information):** + - macOS version: + - MonitorControl version: + - Monitor(s): + - Mac model: + - Monitor Cable(s)/Connection(s): (e.g. DisplayPort) diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 00000000..644a7980 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,14 @@ +--- +name: Question +about: I have a question related to this project +title: '' +labels: 'Type: Question' +assignees: '' + +--- + +**Checklist** + +- [ ] I have searched for existing issues + +**Question** From 6d86e2b241880af380a8c7a54f94b95f0baa5cbb Mon Sep 17 00:00:00 2001 From: Joni Van Roost Date: Wed, 10 Jun 2020 19:46:35 +0200 Subject: [PATCH 2/2] Create config.yml --- .github/ISSUE_TEMPLATE/config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..0086358d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true