From 851c8917e9e179e55094bf3b539386beaf08d08a Mon Sep 17 00:00:00 2001 From: Saurabh Date: Tue, 13 Jan 2026 19:02:26 +0530 Subject: [PATCH] chore: Configure GitHub issue templates (cherry picked from commit 9b44983184146792caf10fd664e7bee22a552610) --- .github/ISSUE_TEMPLATE/bug_report.yml | 39 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 +++ .github/ISSUE_TEMPLATE/feature_request.yml | 20 +++++++++++ 3 files changed, 64 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..54bdd1e7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,39 @@ +name: Bug Report +description: Report a reproducible bug in Press +title: "[Bug]: " +labels: ["bug"] + +body: + - type: markdown + attributes: + value: | + Welcome to Agent issue tracker! Before creating an issue, please heed the following: + + 1. This tracker should only be used to report bugs and request features / enhancements to Press Agent + - For questions and general support, checkout the [user manual](https://docs.frappe.io/cloud/introduction) or use [forum](https://discuss.frappe.io/c/frappe-cloud/77) + 2. When making a bug report, make sure you provide all required information. The easier it is for + maintainers to reproduce, the faster it'll be fixed. + 3. Search the existing issues to avoid creating duplicates. + + - type: textarea + id: bug-info + attributes: + label: Information about bug + description: Also tell us, what did you expect to happen? + placeholder: Please provide as much information as possible. + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to Reproduce + validations: + required: true + + - type: textarea + id: logs + attributes: + label: Relevant log output / Stack trace / Full Error Message. + description: Please copy and paste any relevant log output. This will be automatically formatted. + render: shell diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..4240d4f2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Community Forum + url: https://discuss.frappe.io/c/frappe-cloud/77 + about: For general QnA, discussions and community help. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..92bfcf7f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,20 @@ +name: Feature Request +description: Propose an enhancement or new capability +title: "[Enhancement]: " +labels: ["enhancement"] + +body: + - type: textarea + id: problem + attributes: + label: Problem Statement + validations: + required: true + + - type: textarea + id: proposal + attributes: + label: Proposed Solution + descriptions: + Describe the solution you would like to see implemented. + placeholder: A clear and concise description of what you want to happen.