Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: '🐞 Logic Apps Bug Report'
description: Create a report to help us improve Logic Apps
labels: ['bug', 'triage']
labels: ['triage']
type: 'Bug'
Copy link

Copilot AI Dec 4, 2025

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.

Suggested change
type: 'Bug'

Copilot uses AI. Check for mistakes.
Comment on lines +3 to +4
Copy link

Copilot AI Dec 4, 2025

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.

Suggested change
labels: ['triage']
type: 'Bug'
labels: ['triage', 'bug']

Copilot uses AI. Check for mistakes.
body:
- type: markdown
attributes:
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: '✨ Feature Request'
description: Suggest an idea or enhancement for Logic Apps
labels: ['enhancement', 'triage']
type: 'Feature'
Copy link

Copilot AI Dec 4, 2025

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.

Suggested change
type: 'Feature'

Copilot uses AI. Check for mistakes.
body:
- type: markdown
attributes:
Expand Down
Loading