Add template to open a known issue with populated JSON (#83801)
authorJuan Hoyos <19413848+hoyosjs@users.noreply.github.com>
Thu, 23 Mar 2023 05:49:24 +0000 (22:49 -0700)
committerGitHub <noreply@github.com>
Thu, 23 Mar 2023 05:49:24 +0000 (22:49 -0700)
* Rename 04_blank_issue.md to 05_blank_issue.md

* Create known issue template

* Rename 04_known_issue.md to 04_known_issue.yml

* Update 04_known_issue.yml

* Update 04_known_issue.yml

.github/ISSUE_TEMPLATE/04_known_issue.yml [new file with mode: 0644]
.github/ISSUE_TEMPLATE/05_blank_issue.md [moved from .github/ISSUE_TEMPLATE/04_blank_issue.md with 100% similarity]

diff --git a/.github/ISSUE_TEMPLATE/04_known_issue.yml b/.github/ISSUE_TEMPLATE/04_known_issue.yml
new file mode 100644 (file)
index 0000000..f6b3c15
--- /dev/null
@@ -0,0 +1,32 @@
+name: Known Issue Report
+description: Create a known issue directly
+labels: ["blocking-clean-ci","Known Build Error"]
+body:
+  - type: markdown
+    attributes:
+      value: |
+        Use this template to report issues currently affecting PR stability, be it build or test failures.
+  - type: textarea
+    id: background
+    attributes:
+      label: Error Blob
+      description: Please identify a clear error string that can help identify future instances of this issue. For more information on how to fill this check https://github.com/dotnet/arcade/blob/main/Documentation/Projects/Build%20Analysis/KnownIssues.md#filling-out-known-issues-json-blob
+      placeholder: |
+        ```json
+        {
+          "ErrorMessage": "",
+          "BuildRetry": false,
+          "ErrorPattern": "",
+          "ExcludeConsoleLog": true
+        }
+        ```
+    validations:
+      required: true
+  - type: textarea
+    id: repro-steps
+    attributes:
+      label: Reproduction Steps
+      description: |
+        If possible describe where you observe the issue with links and any other relevant details.
+    validations:
+      required: false