Skip to content
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

Update feedback system to new github issues format #1711

Merged
merged 3 commits into from
Oct 11, 2023
Merged
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
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/customer-feedback.yml
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
11 changes: 10 additions & 1 deletion .repoman.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
revision: 1
revision: 2
schema-version: 1
owner-ms-alias: adegeo

Expand All @@ -9,6 +9,9 @@ config:

ParserRegex: "^\\* (.*): (.*)$"

ContentUrlRegex:
- "### Page URL\n\n(.*)"

issues:

unlabeled: "labeled"
Expand All @@ -33,6 +36,12 @@ issues:
# New issue opened, add Not Triaged
- labels-add: [":watch: Not Triaged"]

- check:
- type: metadata-exists

pass:
- prod_tech_labels: true

reopened:

# Remove won't fix label
Expand Down
40 changes: 39 additions & 1 deletion dotnet-desktop-guide/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,49 @@
"xaml-services/**/*.md": "reference",
"**/*how-to*.md": "how-to",
"**/*overview*.md": "overview"
}
},
"feedback_system": {
"**.*": "OpenSource",
"docs/standard/design-guidelines/**/**.md": "None",
"docs/framework/data/adonet/**/**.md": "None",
"docs/framework/data/wcf/**/**.md": "None",
"docs/framework/ui-automation/**/**.md": "None",
"docs/framework/wcf/**/**.md": "None"
},
"open_source_feedback_contributorGuideUrl": {
"**.*": "https://learn.microsoft.com/contribute/content/dotnet/dotnet-contribute"
},
"open_source_feedback_issueUrl": {
"**.*": "https://github.com/dotnet/docs-desktop/issues/new?template=customer-feedback.yml"
},
"open_source_feedback_productName": {
"**.*": ".NET Desktop feedback"
},
"open_source_feedback_productDescription": {
"**.*": "The .NET Desktop documentation is open source. Provide feedback here."
},
"open_source_feedback_issueTitle": {
"**.*": ""
},
"open_source_feedback_productLogoLightUrl": {
"**.*": "https://learn.microsoft.com/media/logos/logo_net.svg"
},
"open_source_feedback_productLogoDarkUrl": {
"**.*": "https://learn.microsoft.com/media/logos/logo_net.svg"
},
},
"template": [],
"dest": "dotnet-desktop-guide",
"markdownEngineName": "markdig",
"markdownEngineProperties": {
"markdigExtensions": [
"abbreviations",
"definitionlists",
"tasklists",
"footnotes",
"diagrams"
]
},
"groups": {
"framework": {
"dest": "framework-dest",
Expand Down
Loading