From 5536180fee81bcd2e89d584fce946d65d19e64dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Lenksj=C3=B6?= <5889538+lenkan@users.noreply.github.com> Date: Mon, 21 Oct 2024 09:59:21 +0200 Subject: [PATCH] add issue templates (#288) --- .github/ISSUE_TEMPLATE/bug.yaml | 34 +++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature.yaml | 11 ++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature.yaml diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 00000000..3deaa5be --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,34 @@ +name: "Bug report" +description: Bug report template +title: "Bug: short description" +labels: ["bug", "triage"] +body: + - type: input + id: version + attributes: + label: Version + validations: + required: true + - type: input + id: Evnironment + attributes: + label: Environment + description: (OS, Node.js version) + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual behavior + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to reproduce + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml new file mode 100644 index 00000000..99110a3d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -0,0 +1,11 @@ +name: "Feature request" +description: Feature request template +title: "Feature request: short description" +labels: ["feature request", "triage"] +body: + - type: textarea + id: desired-behavior + attributes: + label: Feature request description/rationale + validations: + required: true