Fix #279: Remove version fields from bug report form#439
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces repository-local GitHub issue form templates and updates the bug report form to remove package/PHP version fields, while preserving access to community/support links when organization-level templates are no longer inherited.
Changes:
- Add repo-local issue templates (bug report, feature request, documentation issue).
- Add
.github/ISSUE_TEMPLATE/config.ymlto configure blank issues and a community contact link. - Simplify the bug report form by removing version-related fields.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
.github/ISSUE_TEMPLATE/config.yml |
Configures issue template behavior and adds a community contact link. |
.github/ISSUE_TEMPLATE/01-bug-report.yml |
Defines the bug report issue form with a security reporting notice and a description field. |
.github/ISSUE_TEMPLATE/02-feature-request.yml |
Defines the feature request issue form (currently missing a required id for the textarea control). |
.github/ISSUE_TEMPLATE/03-documentation-issue.yml |
Defines the documentation issue form with a required description field. |
Comment on lines
+4
to
+10
| - type: textarea | ||
| attributes: | ||
| label: Proposed new feature or change | ||
| description: | | ||
| Describe the feature and explain why it's needed. | ||
| validations: | ||
| required: true |
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| > WARNING: DON'T CREATE SECURITY ISSUE here, use [this form](https://www.yiiframework.com/security) instead. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #279.
Adds repository-local issue templates and removes the package version and PHP version fields from the bug report form. The other inherited issue templates are included locally because GitHub stops using the organization default issue template folder when a repository defines its own ISSUE_TEMPLATE directory.