From 96429ebf69d0d5662597eb6b2e0be45f37f39fa4 Mon Sep 17 00:00:00 2001 From: itskovacs Date: Sat, 4 Oct 2025 20:01:32 +0200 Subject: [PATCH] :memo: Add issue templates --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 32 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 20 ++++++++++++++ .github/ISSUE_TEMPLATE/GENERAL_QUESTION.md | 14 ++++++++++ .github/ISSUE_TEMPLATE/config.yml | 14 ++++++++++ 4 files changed, 80 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 .github/ISSUE_TEMPLATE/GENERAL_QUESTION.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md new file mode 100644 index 0000000..3b44d54 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -0,0 +1,32 @@ +--- +name: Bug Report +about: Report something that is not working as expected. +title: 'BUG: ' +labels: 'bug' +assignees: 'itskovacs' + +--- + +**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. + +**Environment:** + - OS: [e.g. iOS, Windows 11] + - Browser [e.g. Chrome 142, Firefox 137] + - TRIP Version [e.g. 1.19.1] + +**Additional context** +Add any other context about the problem here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md new file mode 100644 index 0000000..9c8c2ad --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -0,0 +1,20 @@ +--- +name: Feature Request +about: Suggest a new feature or an enhancement. +title: 'FR: ' +labels: 'enhancement' +assignees: 'itskovacs' + +--- + +**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. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/GENERAL_QUESTION.md b/.github/ISSUE_TEMPLATE/GENERAL_QUESTION.md new file mode 100644 index 0000000..bea59eb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/GENERAL_QUESTION.md @@ -0,0 +1,14 @@ +--- +name: General Question +about: Ask a question. +title: 'Q: ' +labels: 'question' +assignees: 'itskovacs' + +--- + +**Your Question** +Please provide a clear and concise description of your question. + +**Additional context** +Add any other context that might be helpful. \ 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..f909e3c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,14 @@ +blank_issues_enabled: true +issue_templates: + - name: "Bug Report" + description: "Report something that is not working as expected." + title: "BUG: " + labels: ["bug"] + - name: "Feature Request" + description: "Suggest a new feature or an enhancement." + title: "FR: " + labels: ["enhancement"] + - name: "General Question" + description: "Ask a question." + title: "Q: " + labels: ["question"] \ No newline at end of file