summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Sago <ogham@bsago.me>2020-10-21 16:59:44 +0100
committerBenjamin Sago <ogham@bsago.me>2020-10-21 16:59:44 +0100
commitf0c63b64ecfdc749b6c4b4d3e0c09866062c4771 (patch)
tree6a398792ac65f8ffa3041ebeaaaf42c8e198aa6c
parentdb6288a9bb92d0b96cafd2ba16c8d3caf9e90708 (diff)
Use issue templates
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md14
-rw-r--r--.github/ISSUE_TEMPLATE/compilation_error.md15
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml1
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.md4
-rw-r--r--.github/ISSUE_TEMPLATE/question.md4
5 files changed, 38 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000..bdb0323
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,14 @@
+---
+name: Bug report
+about: Report a crash, runtime error, or invalid output in exa
+---
+
+If exa does something unexpected, or its output looks wrong, or it displays an error on the screen, or if it outright crashes, then please include the following information in your report:
+
+- The version of exa being used (`exa --version`)
+- The command-line arguments you are using
+- Your operating system and hardware platform
+
+If it’s a crash, please include the full text of the crash that gets printed to the screen. If you’re seeing unexpected behaviour, a screenshot of the issue will help a lot.
+
+---
diff --git a/.github/ISSUE_TEMPLATE/compilation_error.md b/.github/ISSUE_TEMPLATE/compilation_error.md
new file mode 100644
index 0000000..669f1d6
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/compilation_error.md
@@ -0,0 +1,15 @@
+---
+name: Compilation error
+about: Report a problem compiling exa
+---
+
+If exa fails to compile, or if there is a problem during the build process, then please include the following information in your report:
+
+- The exact exa commit you are building (`git rev-parse --short HEAD`)
+- The version of rustc you are compiling it with (`rustc --version`)
+- Your operating system and hardware platform
+- The Rust build target (the _exact_ output of `rustc --print cfg`)
+
+If you are seeing compilation errors, please include the output of the build process.
+
+---
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..0086358
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1 @@
+blank_issues_enabled: true
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 0000000..a191356
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,4 @@
+---
+name: Feature request
+about: Request a feature or enhancement to exa
+---
diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md
new file mode 100644
index 0000000..fccaba5
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/question.md
@@ -0,0 +1,4 @@
+---
+name: Question
+about: Ask a question about exa
+---