-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable new Open Source feedback control (#4640)
1. Create new YML based templates, removing the old markdown based template. 1. Add the issue-template config file. 1. Update docfx.json to match the new templates.
- Loading branch information
1 parent
33a59c2
commit 784bf73
Showing
5 changed files
with
86 additions
and
4 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: "General feedback" | ||
description: Provide general feedback about the Entity Framework docs or a specific article. | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Describe the issue or suggestion. NOTE: If your issue is about a specific article, it's best to submit your feedback by clicking the 'Open a documentation issue' link in the 'EntityFramework feedback' box at the end of the article." | ||
- type: input | ||
id: topic | ||
attributes: | ||
label: Issue or suggestion | ||
description: Describe the issue | ||
validations: | ||
required: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Entity Framework product feedback | ||
url: https://github.com/dotnet/efcore/issues | ||
about: Log Entity Framework product feedback here | ||
- name: learn.microsoft.com site feedback | ||
url: https://github.com/MicrosoftDocs/feedback/issues/new/choose | ||
about: Log general learn.microsoft.com site issues here |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Learn feedback control. | ||
description: | | ||
⛔ This template is hooked into the feedback control on the bottom of every page on the live site. It automatically fills in several fields for you. Don't use for other purposes. ⛔ | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "## Issue information" | ||
- type: markdown | ||
attributes: | ||
value: Select the issue type, and describe the issue in the text box below. Add as much detail as needed to help us resolve the issue. | ||
- type: dropdown | ||
id: issue-type | ||
attributes: | ||
label: Type of issue | ||
options: | ||
- Typo | ||
- Code doesn't work | ||
- Missing information | ||
- Outdated article | ||
- Other (describe below) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feedback | ||
validations: | ||
required: true | ||
attributes: | ||
label: Description | ||
- type: markdown | ||
attributes: | ||
value: "## 🚧 Article information 🚧" | ||
- type: markdown | ||
attributes: | ||
value: "*Don't modify the following fields*. They are automatically filled in for you. Doing so will disconnect your issue from the affected article. *Don't edit them*." | ||
- type: input | ||
id: pageUrl | ||
validations: | ||
required: true | ||
attributes: | ||
label: Page URL | ||
- type: input | ||
id: contentSourceUrl | ||
validations: | ||
required: true | ||
attributes: | ||
label: Content source URL | ||
- type: input | ||
id: documentVersionIndependentId | ||
validations: | ||
required: true | ||
attributes: | ||
label: Document Version Independent Id | ||
- type: input | ||
id: author | ||
validations: | ||
required: true | ||
attributes: | ||
label: Article author |
This file contains 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