Add issue template type attributes#12
Merged
maicol07 merged 3 commits intomaterial-web-community:main-communityfrom Aug 9, 2025
Merged
Add issue template type attributes#12maicol07 merged 3 commits intomaterial-web-community:main-communityfrom
maicol07 merged 3 commits intomaterial-web-community:main-communityfrom
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR adds the type attribute to GitHub issue templates to enable better categorization and filtering of issues. The change addresses issue #11 by implementing proper type classification for different issue template forms.
- Adds
type: Featureto the feature request template - Adds
type: Bugto both bug report templates (component bugs and documentation bugs)
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/ISSUE_TEMPLATE/feature.yaml | Adds type attribute for feature requests |
| .github/ISSUE_TEMPLATE/documentation-bug.yaml | Adds type attribute for documentation bugs |
| .github/ISSUE_TEMPLATE/bug.yaml | Adds type attribute for component bugs |
| @@ -1,5 +1,6 @@ | |||
| name: 🐛 Documentation Bug | |||
| description: Report a bug that affects Material Web documentation (https://material-web.dev/) | |||
| type: Bug | |||
There was a problem hiding this comment.
[nitpick] Consider using a more specific type like 'Documentation' for documentation bugs to better distinguish them from component bugs. This would enable more precise filtering and categorization of issues.
Suggested change
| type: Bug | |
| type: Documentation |
maicol07
approved these changes
Aug 9, 2025
Member
|
LGTM |
ed6631f
into
material-web-community:main-community
1 check failed
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.
Fixed: #11