From 06f4681b0ce09f5694ad1e907536d2ea575912fb Mon Sep 17 00:00:00 2001 From: Remy Suen Date: Wed, 4 Jun 2025 15:18:53 -0400 Subject: [PATCH 1/4] Create an issue template to help guide users with writing their issue Signed-off-by: Remy Suen --- .github/ISSUE_TEMPLATE/issue.yaml | 40 +++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/issue.yaml diff --git a/.github/ISSUE_TEMPLATE/issue.yaml b/.github/ISSUE_TEMPLATE/issue.yaml new file mode 100644 index 0000000..3fcfcfe --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.yaml @@ -0,0 +1,40 @@ +# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema + +name: Issue + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to open an issue! + Please take a look at our [FAQ](https://github.com/docker/vscode-extension/blob/main/FAQ.md) to see if it addresses the issue you are reporting. + If this is a security issue please report it to the [Docker Security team](mailto:security@docker.com). + + - type: textarea + attributes: + label: Description + description: | + validations: + required: true + + - type: textarea + attributes: + label: Visual Studio Code version + description: | + Output of `code -v` command. + validations: + required: true + + - type: textarea + attributes: + label: Installed extensions in Visual Studio Code + description: | + Output of `code --list-extensions --show-versions` command. + validations: + required: true + + - type: textarea + attributes: + label: Additional info + description: | + Please provide any additional information that could be useful. From 55453355738fc7724179c0b84ae6f9baf6cb626e Mon Sep 17 00:00:00 2001 From: Remy Suen Date: Wed, 4 Jun 2025 15:19:53 -0400 Subject: [PATCH 2/4] Fix the malformed YAML Signed-off-by: Remy Suen --- .github/ISSUE_TEMPLATE/issue.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/issue.yaml b/.github/ISSUE_TEMPLATE/issue.yaml index 3fcfcfe..1f49df9 100644 --- a/.github/ISSUE_TEMPLATE/issue.yaml +++ b/.github/ISSUE_TEMPLATE/issue.yaml @@ -13,7 +13,6 @@ body: - type: textarea attributes: label: Description - description: | validations: required: true From d968d04117c509b468779fb1fc5bae1d663b2341 Mon Sep 17 00:00:00 2001 From: Remy Suen Date: Wed, 4 Jun 2025 15:21:03 -0400 Subject: [PATCH 3/4] Add back the required description attribute Signed-off-by: Remy Suen --- .github/ISSUE_TEMPLATE/issue.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/issue.yaml b/.github/ISSUE_TEMPLATE/issue.yaml index 1f49df9..6be103b 100644 --- a/.github/ISSUE_TEMPLATE/issue.yaml +++ b/.github/ISSUE_TEMPLATE/issue.yaml @@ -13,6 +13,8 @@ body: - type: textarea attributes: label: Description + description: | + Provide a description of the issue you are reporting here. validations: required: true From 7c00be91fecfb244a241bf58a57b258d5c8d6fcf Mon Sep 17 00:00:00 2001 From: Remy Suen Date: Wed, 4 Jun 2025 15:22:27 -0400 Subject: [PATCH 4/4] Add the required top level description attribute Signed-off-by: Remy Suen --- .github/ISSUE_TEMPLATE/issue.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/issue.yaml b/.github/ISSUE_TEMPLATE/issue.yaml index 6be103b..555c500 100644 --- a/.github/ISSUE_TEMPLATE/issue.yaml +++ b/.github/ISSUE_TEMPLATE/issue.yaml @@ -1,7 +1,7 @@ # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema name: Issue - +description: Report an issue about the Docker DX extension. body: - type: markdown attributes: