summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-09-28 18:35:58 -0700
committerGitHub <noreply@github.com>2023-09-28 18:35:58 -0700
commitffc24c3c29c27b3ce1b564f58f252a71e7df0952 (patch)
treeec28c675adef37e4c5265cec82fe12d8eb89697e /.github
parent33f009efadf510c84df0bd57d227e40d9154bdb9 (diff)
Add support template (#1267)
Diffstat (limited to '.github')
-rw-r--r--.github/DISCUSSION_TEMPLATE/support.yml86
1 files changed, 86 insertions, 0 deletions
diff --git a/.github/DISCUSSION_TEMPLATE/support.yml b/.github/DISCUSSION_TEMPLATE/support.yml
new file mode 100644
index 000000000..35d6a3785
--- /dev/null
+++ b/.github/DISCUSSION_TEMPLATE/support.yml
@@ -0,0 +1,86 @@
+body:
+ - type: textarea
+ attributes:
+ label: Operating System
+ description: What operating system are you using?
+ placeholder: "Example: macOS Big Sur"
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Shell
+ description: What shell are you using?
+ placeholder: "Example: zsh 5.8.1"
+ validations:
+ required: true
+
+ - type: dropdown
+ attributes:
+ label: Version
+ description: What version of atuin are you running?
+ multiple: false
+ options: # how often will I forget to update this? a lot.
+ - v16.0.0 (Default)
+ - v15.0.0
+ - v14.0.1
+ - v14.0.0
+ - v13.0.1
+ - v13.0.0
+ - v12.0.0
+ - v11.0.0
+ - v0.10.0
+ - v0.9.1
+ - v0.9.0
+ - v0.8.1
+ - v0.8.0
+ - v0.7.2
+ - v0.7.1
+ - v0.7.0
+ - v0.6.4
+ - v0.6.3
+ default: 0
+ validations:
+ required: true
+
+ - type: checkboxes
+ attributes:
+ label: Self hosted
+ description: Are you self hosting atuin server?
+ options:
+ - label: I am self hosting atuin server
+ required: true
+
+ - type: checkboxes
+ attributes:
+ label: Search the issues
+ description: Did you search the issues and discussions for your problem?
+ options:
+ - label: I checked that someone hasn't already asked about the same issue
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Behaviour
+ description: "Please describe the issue - what you expected to happen, what actually happened"
+ options:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Logs
+ description: "If possible, please include logs from atuin, especially if you self host the server - ATUIN_LOG=debug"
+
+ - type: textarea
+ attributes:
+ label: Extra information
+ description: "Anything else you'd like to add?"
+
+ - type: checkboxes
+ attributes:
+ label: Code of Conduct
+ description: The Code of Conduct helps create a safe space for everyone. We require
+ that everyone agrees to it.
+ options:
+ - label: I agree to follow this project's [Code of Conduct](https://github.com/atuinsh/atuin/blob/main/CODE_OF_CONDUCT.md)
+ required: true