From 0b3f4dc18a6dc5e01a03298974a943aef7431908 Mon Sep 17 00:00:00 2001 From: Juan Hoyos <19413848+hoyosjs@users.noreply.github.com> Date: Wed, 22 Mar 2023 22:49:24 -0700 Subject: [PATCH] Add template to open a known issue with populated JSON (#83801) * 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 | 32 ++++++++++++++++++++++ .../{04_blank_issue.md => 05_blank_issue.md} | 0 2 files changed, 32 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/04_known_issue.yml rename .github/ISSUE_TEMPLATE/{04_blank_issue.md => 05_blank_issue.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/04_known_issue.yml b/.github/ISSUE_TEMPLATE/04_known_issue.yml new file mode 100644 index 0000000..f6b3c15 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/04_known_issue.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/04_blank_issue.md b/.github/ISSUE_TEMPLATE/05_blank_issue.md similarity index 100% rename from .github/ISSUE_TEMPLATE/04_blank_issue.md rename to .github/ISSUE_TEMPLATE/05_blank_issue.md -- 2.7.4