-
Notifications
You must be signed in to change notification settings - Fork 95
chore(meta): Updated bug/feature issue templates with types #8638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
🤖 AI PR Validation ReportPR Review ResultsThank you for your submission! Here's detailed feedback on your PR title and body compliance:✅ PR Title
✅ Commit Type
✅ Risk Level
✅ What & Why
✅ Impact of Change
✅ Test Plan
|
| Section | Status | Recommendation |
|---|---|---|
| Title | ✅ | — |
| Commit Type | ✅ | — |
| Risk Level | ✅ | — |
| What & Why | ✅ | Optionally add a bit more context |
| Impact of Change | ✅ | — |
| Test Plan | ✅ | — |
| Contributors | Credit others if applicable (optional) | |
| Screenshots/Videos | ✅ | — |
Everything required has been completed! This PR passes review for title and body compliance. No risk adjustment is needed. If others contributed, consider tagging them for credit. Thank you for helping maintain documentation quality!
Last updated: Thu, 04 Dec 2025 16:32:51 GMT
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR attempts to add type classification to GitHub issue templates by introducing a type field to both bug and feature request templates. However, this introduces a configuration issue as the type field is not part of GitHub's official issue form schema.
Key Changes:
- Added
type: 'Feature'field to feature_request.yml - Added
type: 'Bug'field to bug_report.yml - Removed 'bug' label from bug_report.yml labels array
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| .github/ISSUE_TEMPLATE/feature_request.yml | Adds invalid type: 'Feature' field to template metadata |
| .github/ISSUE_TEMPLATE/bug_report.yml | Adds invalid type: 'Bug' field and removes 'bug' label from labels array |
| description: Create a report to help us improve Logic Apps | ||
| labels: ['bug', 'triage'] | ||
| labels: ['triage'] | ||
| type: 'Bug' |
Copilot
AI
Dec 4, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type field is not a valid top-level field in GitHub issue form templates. According to GitHub's issue form schema documentation, the valid top-level fields are: name, description, title, labels, assignees, and body. This field should be removed as it will either be ignored or cause the template to fail validation.
| type: 'Bug' |
| labels: ['triage'] | ||
| type: 'Bug' |
Copilot
AI
Dec 4, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'bug' label was removed from the labels array. If this removal is intentional (to rely on the type field instead), please note that the type field is not valid and should be removed. The 'bug' label should likely be restored to maintain proper issue categorization, similar to how 'enhancement' is used in the feature_request.yml template.
| labels: ['triage'] | |
| type: 'Bug' | |
| labels: ['triage', 'bug'] |
| name: '✨ Feature Request' | ||
| description: Suggest an idea or enhancement for Logic Apps | ||
| labels: ['enhancement', 'triage'] | ||
| type: 'Feature' |
Copilot
AI
Dec 4, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type field is not a valid top-level field in GitHub issue form templates. According to GitHub's issue form schema documentation, the valid top-level fields are: name, description, title, labels, assignees, and body. This field should be removed as it will either be ignored or cause the template to fail validation.
| type: 'Feature' |
Commit Type
Risk Level
What & Why
Updated bug/feature issue templates with types
Impact of Change
Test Plan
Contributors
@rllyy97
Screenshots/Videos
N/A