summaryrefslogtreecommitdiffhomepage
path: root/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml67
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml11
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.yml24
3 files changed, 0 insertions, 102 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
deleted file mode 100644
index f096ad598..000000000
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ /dev/null
@@ -1,67 +0,0 @@
-name: Bug report
-description: Create a bug report to help us improve
-labels:
- - 'type: bug'
-body:
- - type: textarea
- id: description
- attributes:
- label: Description
- description: >
- A clear description of the bug. If possible, explicitly indicate the
- expected behavior vs. the observed behavior.
- placeholder: Describe the problem.
- validations:
- required: true
- - type: textarea
- id: repro
- attributes:
- label: Steps to reproduce
- description: >
- If available, please include detailed reproduction steps.
-
- If the bug requires software that is not publicly available, see if it
- can be reproduced with software that is publicly available.
- placeholder: How can others reproduce the issue?
- - type: markdown
- attributes:
- value: |
- # Environment
-
- Please include the following details of your environment.
- - type: textarea
- id: runscVersion
- attributes:
- label: "runsc version"
- placeholder: "`runsc -version`"
- render: shell
- - type: textarea
- id: docker
- attributes:
- label: "docker version (if using docker)"
- placeholder: "`docker version` or `docker info`"
- render: shell
- - type: input
- id: uname
- attributes:
- label: "uname"
- placeholder: "`uname -a`"
- - type: textarea
- id: kubectl
- attributes:
- label: "kubectl (if using Kubernetes)"
- placeholder: "`kubectl version` and `kubectl get nodes`"
- render: shell
- - type: input
- id: gitDescribe
- attributes:
- label: "repo state (if built from source)"
- placeholder: "`git describe`"
- - type: textarea
- id: runscLogs
- attributes:
- label: "runsc debug logs (if available)"
- description: >
- See the [debug guide](https://gvisor.dev/docs/user_guide/debugging/)
- to learn about logging.
- render: shell
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
deleted file mode 100644
index 772c9a0ac..000000000
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-blank_issues_enabled: false
-contact_links:
- - name: gVisor Documentation (FAQ)
- url: https://gvisor.dev/docs/user_guide/faq/
- about: Please see our documentation for common questions and answers.
- - name: gVisor Documentation (Debugging)
- url: https://gvisor.dev/docs/user_guide/debugging/
- about: Please see our documentation for debugging tips.
- - name: gVisor User Forum
- url: https://groups.google.com/g/gvisor-users
- about: Ask and answer general questions here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
deleted file mode 100644
index 5073aba8b..000000000
--- a/.github/ISSUE_TEMPLATE/feature_request.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-name: Feature request
-description: Suggest an idea or improvement
-labels:
- - 'type: enhancement'
-body:
- - type: textarea
- id: description
- attributes:
- label: Description
- placeholder: A clear description of the feature or enhancement.
- validations:
- required: true
- - type: textarea
- id: related
- attributes:
- label: Is this feature related to a specific bug?
- description: Please include a bug references if yes.
- - type: textarea
- id: solution
- attributes:
- label: Do you have a specific solution in mind?
- description: >
- Please include any details about a solution that you have in mind,
- including any alternatives considered.