Fix customer feedback issue template#12866
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the customer feedback issue form and related issue-closing policy configuration to align with dotnet/docs behavior and avoid unintended “description reset”/auto-close scenarios for feedback-created issues.
Changes:
- Updates the customer feedback issue form YAML (issue template) structure.
- Removes the “close learn template issues with empty descriptions (spam)” automation block from the close-issues policy.
- Minor whitespace/formatting cleanup in the close-issues policy file.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/policies/close-issues.yml | Removes the automation that labeled/replied/closed issues matching “empty description” patterns; minor formatting cleanup. |
| .github/ISSUE_TEMPLATE/z-customer-feedback.yml | Modifies the customer feedback issue form by removing the textarea field id. |
Comments suppressed due to low confidence (1)
.github/ISSUE_TEMPLATE/z-customer-feedback.yml:28
- This textarea is missing an
id. In GitHub issue forms,input/textareafields are expected to have anid(and this repo’s other issue template does), so omitting it can make the template invalid or break field persistence/automation that depends on the field key.
- type: textarea
validations:
required: true
attributes:
label: Description
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.
Update to match dotnet/docs and prevent description auto-reset.