From 5bb002a7ca763933feb777c26b076a818fda3163 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Thu, 7 May 2026 10:24:17 +0300 Subject: [PATCH] Remove version fields from bug form --- .github/ISSUE_TEMPLATE/01-bug-report.yml | 14 ++++++++++++++ .github/ISSUE_TEMPLATE/02-feature-request.yml | 10 ++++++++++ .github/ISSUE_TEMPLATE/03-documentation-issue.yml | 10 ++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 4 files changed, 39 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/01-bug-report.yml create mode 100644 .github/ISSUE_TEMPLATE/02-feature-request.yml create mode 100644 .github/ISSUE_TEMPLATE/03-documentation-issue.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/01-bug-report.yml b/.github/ISSUE_TEMPLATE/01-bug-report.yml new file mode 100644 index 00000000..ccf74294 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01-bug-report.yml @@ -0,0 +1,14 @@ +name: Bug Report +description: Let us know about a problem +body: + - type: markdown + attributes: + value: | + > WARNING: DON'T CREATE SECURITY ISSUE here, use [this form](https://www.yiiframework.com/security) instead. + - type: textarea + id: description + attributes: + label: Description + description: Provide a detailed description of the issue. Include all relevant information to help us understand and reproduce the problem. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/02-feature-request.yml b/.github/ISSUE_TEMPLATE/02-feature-request.yml new file mode 100644 index 00000000..a124f425 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-feature-request.yml @@ -0,0 +1,10 @@ +name: Feature request +description: Suggest an idea for improvement +body: + - type: textarea + attributes: + label: Proposed new feature or change + description: | + Describe the feature and explain why it's needed. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/03-documentation-issue.yml b/.github/ISSUE_TEMPLATE/03-documentation-issue.yml new file mode 100644 index 00000000..08a20b17 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03-documentation-issue.yml @@ -0,0 +1,10 @@ +name: Documentation Issue +description: Report documentation issues or suggest improvements +body: + - type: textarea + id: description + attributes: + label: Description + description: Describe the issue and what you expected to find. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..2c5a988c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Yii Community + url: https://www.yiiframework.com/community + about: Join our friendly and helpful Yii community!