report template
diff --git a/.github/DISCUSSION_TEMPLATE b/.github/DISCUSSION_TEMPLATE/q-a.yml
similarity index 100%
rename from .github/DISCUSSION_TEMPLATE
rename to .github/DISCUSSION_TEMPLATE/q-a.yml
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index f7a07a8..0000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,33 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: ''
-assignees: ''
-
----
-
-**Describe the bug**
-A clear and concise description of what the bug is.
-
-**To Reproduce**
-Steps to reproduce the behavior:
-1. Go to '...'
-2. Click on '....'
-3. Scroll down to '....'
-4. See error
-
-**Expected behavior**
-A clear and concise description of what you expected to happen.
-
-**Screenshots**
-If applicable, add screenshots to help explain your problem.
-
-**Environment (please complete the following information):**
- - Karavan version: [4.4.0]
- - Type: [Application, VS Code Extension]
- - Container Management: [e.g. Docker, Kubernetes if applicable]
- - OS: [e.g. Linux, MacOS, Windows if applicable]
-
-**Additional context**
-Add any other context about the problem here.
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 0000000..8a0c231
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,71 @@
+name: Bug Report
+description: File a bug report.
+title: "Bug"
+labels: ["bug"]
+body:
+  - type: textarea
+    id: description
+    attributes:
+      label: Describe the bug
+      description: A clear and concise description of what the bug is. Add screenshorts if applicable.
+      value: "A bug happened!"
+    validations:
+      required: true
+  - type: textarea
+    id: reproduce
+    attributes:
+      label: Steps to reproduce the behavior
+      description: Add screenshorts if applicable
+      value: |
+        1. Go to '...'a
+        2. Click on '....'
+        3. Scroll down to '....'
+        4. See error
+    validations:
+      required: true
+  - type: dropdown
+    id: variant
+    attributes:
+      label: Variant
+      description: What Karavan variant are you running?
+      options:
+        - Web Application
+        - Vs Code Extension
+      default: 0
+    validations:
+      required: true
+  - type: dropdown
+    id: container
+    attributes:
+      label: Container Management (if applicable)
+      description: What Container Management System are you running?
+      options:
+        - Docker
+        - Kubernetes
+        - Openshift
+  - type: dropdown
+    id: os
+    attributes:
+      label: Operating System (if applicable)
+      description: What Operating System are you running?
+      options:
+        - Linux
+        - MacOS
+        - Windows
+  - type: dropdown
+    id: version
+    attributes:
+      label: Version
+      description: What Karavan version are you running?
+      options:
+        - 4.4.0
+        - 4.5.0
+      default: 0
+    validations:
+      required: true
+  - type: textarea
+    id: logs
+    attributes:
+      label: Relevant log output
+      description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
+      render: shell
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index e48d9bc..0000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: ''
-labels: ''
-assignees: ''
-
----
-
-**Is your feature request related to a problem? Please describe.**
-A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
-
-**Describe the solution you'd like**
-A clear and concise description of what you want to happen.
-
-**Describe alternatives you've considered**
-A clear and concise description of any alternative solutions or features you've considered.
-
-**Environment (please complete the following information):**
- - Type: [Application, VS Code Extension]
- - Container Management: [e.g. Docker, Kubernetes if applicable]
- - OS: [e.g. Linux, MacOS, Windows if applicable]
-
-**Additional context**
-Add any other context or screenshots about the feature request here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 0000000..d278136
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,33 @@
+name: Feature request
+description: Suggest an idea for this project
+title: "Idea"
+labels: ["feature"]
+body:
+  - type: textarea
+    id: description
+    attributes:
+      label: Describe the solution you'd like
+      description: A clear and concise description of what you want to happen.
+      value: "A feature that simplifies the work of integration developers"
+    validations:
+      required: true
+  - type: dropdown
+    id: variant
+    attributes:
+      label: Variant
+      description: To what Karavan variant this feature is related?
+      options:
+        - Web Application
+        - Vs Code Extension
+      default: 0
+    validations:
+      required: true
+  - type: dropdown
+    id: container
+    attributes:
+      label: Container Management (if applicable)
+      description: What Container Management System are you running?
+      options:
+        - Docker
+        - Kubernetes
+        - Openshift