From 1e8e47cbeb4215f9d2915ecb1a949d4b5fa84030 Mon Sep 17 00:00:00 2001 From: Karina Balagazova Date: Mon, 23 Sep 2024 14:12:36 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20github=20issue=20forms=20and?= =?UTF-8?q?=20PR=20template?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ref #1 --- .github/ISSUE_TEMPLATE/bug_report.yaml | 47 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yaml | 41 ++++++++++++++++ .../ISSUE_TEMPLATE/pull_request_template.md | 5 ++ package.json | 7 ++- 4 files changed, 99 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml create mode 100644 .github/ISSUE_TEMPLATE/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..2ae1bc6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,47 @@ +name: 🐛 Bug Report +description: File a bug report. +title: "🐛 " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + ## 🐛 Bug + - type: textarea + id: bug_description + attributes: + label: What happened? + description: Describe the bug what you encountered. + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Reproduction steps + description: Please provide the steps to reproduce the bug. + value: | + - + - + - + validations: + required: true + - type: markdown + attributes: + value: | + ## 💡 Solution + - type: textarea + id: solution_description + attributes: + label: What would you like to happen? + description: Describe the solution you'd like. + validations: + required: true + - type: markdown + attributes: + value: | + ## 🔧 Environment + - type: textarea + id: context + attributes: + label: Additional context + description: Please provide any relevant information about your environment. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000..afa78a7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,41 @@ +name: ✨ Feature Request +description: Request a new feature. +title: "✨ " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + ## ⚠️ Problem + - type: textarea + id: related_problem + attributes: + label: Is your feature request related to a problem? + description: Please describe the problem you are facing. + validations: + required: true + - type: markdown + attributes: + value: | + ## 💡 Solution + - type: textarea + id: solution_description + attributes: + label: What feature would you like to see? + description: Describe the solution. + validations: + required: true + - type: textarea + id: alternative_solution + attributes: + label: What alternatives have you considered? + description: Describe any alternative features you've considered. + - type: markdown + attributes: + value: | + ## 🔧 Environment + - type: textarea + id: context + attributes: + label: Additional context + description: "Please provide any relevant information about your environment." diff --git a/.github/ISSUE_TEMPLATE/pull_request_template.md b/.github/ISSUE_TEMPLATE/pull_request_template.md new file mode 100644 index 0000000..60eded3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/pull_request_template.md @@ -0,0 +1,5 @@ +### PR addresses: + +- + +Fixes # \ No newline at end of file diff --git a/package.json b/package.json index 1f91865..faf4c19 100755 --- a/package.json +++ b/package.json @@ -1,9 +1,14 @@ { "name": "configuru", - "displayName": "Configuru", + "displayName": "VS Code extension for the Configuru library", "description": "Configuru ", "publisher": "ackee", "version": "0.0.1", + "icon": "resources/logo.png", + "repository": { + "type": "git", + "url": "https://github.com/AckeeCZ/configuru-extension" + }, "engines": { "vscode": "^1.79.0" },