diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..57cd9df --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,71 @@ +# SPDX-FileCopyrightText: 2025 LibreCode coop and contributors +# SPDX-License-Identifier: AGPL-3.0-or-later + +name: Bug report +description: Create a report to help us improve +labels: ["bug"] +assignees: "your-username" + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + - type: input + id: title + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + placeholder: ex. Failed to extract a zip file + validations: + required: true + + - type: textarea + id: reproduce + attributes: + label: To reproduce + description: Steps to reproduce the behavior + placeholder: | + - I'm an authenticated user + - Go to '...' + - Click on '....' + - Scroll down to '....' + - See error + validations: + required: false + + - type: input + id: behavior + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + + - type: textarea + id: screenshots + attributes: + label: Screenshots + placeholder: Press the button below to add screenshots. + description: If applicable, add screenshots to help explain your problem. + + - type: textarea + id: environment + attributes: + label: Environment information + description: Please complete the following infomation + placeholder: | + - OS: [e.g. Linux Debian, Docker] + - Browser [e.g. chrome, safari] + - Extract Version [e.g. 3.2.1] + - Nextcloud Server Version [e.g. 24.0.1] + - Logs (get the entries from nextcloud.log related with Extract i.e `tail -f data/nextcloud.log|grep extract`) + validations: + required: true + + - type: textarea + id: additional + attributes: + label: Additional context + description: Add any other context about the problem here. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..1845bf3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +# SPDX-FileCopyrightText: 2025 LibreCode coop and contributors +# SPDX-License-Identifier: AGPL-3.0-or-later + +blank_issues_enabled: false +contact_links: [] diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..959fce6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,42 @@ +# SPDX-FileCopyrightText: 2025 LibreCode coop and contributors +# SPDX-License-Identifier: AGPL-3.0-or-later + +name: Feature request +description: Suggest an idea for this project +title: "[FEATURE]: " +labels: ["feature-request"] +assignees: "your-username" + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + + - type: textarea + id: problem + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + validations: + required: false + + - type: textarea + id: solution + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + + - type: textarea + id: additional + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here.