aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2020-07-06 17:18:47 -0400
committerLibravatar Simon Ser <contact@emersion.fr>2020-07-06 23:30:14 +0200
commitbac9559665bc908e4f61a6405a6ce5109956f4a3 (patch)
tree29117183b2dc3be771cb53da8f5012fa02440cec /.github
parentprotocols: sync wlr-layer-shell-unstable-v1 with wlroots (diff)
downloadsway-bac9559665bc908e4f61a6405a6ce5109956f4a3.tar.gz
sway-bac9559665bc908e4f61a6405a6ce5109956f4a3.tar.zst
sway-bac9559665bc908e4f61a6405a6ce5109956f4a3.zip
ISSUE_TEMPLATE: Use the newer issue templates
This utilizes the newer Github issue templates. They allow for the user to specify what type of issue they are submitting to allow for a more specific issue template to be shown. In addition to a hopefully easier to read/parse/follow bug report template, this also include templates for enhancements and i3 compatibility. This also includes a link to the IRC under the section title Questions. For the three templates, the labels bug, enhancement, and i3-compat will be automatically applied for the appropriate report to assist in triaging. Hopefully, this will result in less questions and issues for new window management functionality on Github and allow for better quality issues being submitted. At the very least, it allows us to outline our stances for bugs, enhancements, and i3-compatibility in an easier to read format.
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md33
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml5
-rw-r--r--.github/ISSUE_TEMPLATE/enhancement.md13
-rw-r--r--.github/ISSUE_TEMPLATE/i3_compat.md20
4 files changed, 71 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 00000000..4e4f6a77
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,33 @@
1---
2name: Bugs
3about: Crashes and other bugs
4labels: 'bug'
5
6---
7
8### Please read the following before submitting:
9- Please do NOT submit bug reports for questions. Ask questions on IRC at #sway on irc.freenode.net.
10- Proprietary graphics drivers, including nvidia, are not supported. Please use the open source equivalents, such as nouveau, if you would like to use Sway.
11- Problems with the Wayland version of Firefox are likely to be Firefox bugs. Start by submitting your issue to the Firefox Bugzilla and come back here only after they confirm otherwise.
12
13### Please fill out the following:
14- **Sway Version:**
15 - `swaymsg -t get_version` or `sway -v`
16
17- **Debug Log:**
18 - Run `sway -d 2> ~/sway.log` from a TTY and upload it to a pastebin, such as gist.github.com.
19 - This will record information about sway's activity. Please try to keep the reproduction as brief as possible and exit sway.
20
21- **Configuration File:**
22 - Please try to produce with the default configuration.
23 - If you cannot reproduce with the default configuration, please try to find the minimal configuration to reproduce.
24 - Upload the config to a pastebin such as gist.github.com.
25
26- **Stack Trace:**
27 - This is only needed if sway crashes.
28 - If you use systemd, you should be able to open the coredump of the most recent crash with gdb with
29 `coredumpctl gdb sway` and then `bt full` to obtain the stack trace.
30 - If the lines mentioning sway or wlroots have `??` for the location, your binaries were built without debug symbols. Please compile both sway and wlroots from source and try to reproduce.
31
32- **Description:**
33 - The steps you took in plain English to reproduce the problem.
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 00000000..f09cdf5b
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
1blank_issues_enabled: false
2contact_links:
3 - name: Questions
4 url: "http://webchat.freenode.net/?channels=sway&uio=d4"
5 about: "Please ask questions on IRC in #sway on irc.freenode.net"
diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md
new file mode 100644
index 00000000..3ed45b01
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/enhancement.md
@@ -0,0 +1,13 @@
1---
2name: Enhancements
3about: New functionality
4labels: 'enhancement'
5
6---
7
8### Please read the following before submitting:
9- We are not accepting any new window management features unless they get implemented by i3. Please consider searching for or opening an i3 feature request.
10
11### Please fill out the following:
12- **Description:**
13Please describe in plain English what the enhancement is and what the use case is.
diff --git a/.github/ISSUE_TEMPLATE/i3_compat.md b/.github/ISSUE_TEMPLATE/i3_compat.md
new file mode 100644
index 00000000..4dfa21c3
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/i3_compat.md
@@ -0,0 +1,20 @@
1---
2name: i3 Compatibility
3about: Sway behaves differently from or lacks i3 functionality
4labels: 'i3-compat'
5
6---
7
8### Please read the following before submitting:
9- The following either do not make sense for Wayland or we have decided against supporting:
10 - `restart`
11 - `resource`
12 - saving and loading layouts
13 - the i3 sync protocol
14
15### Please fill out the following:
16- **i3 PR:**
17 - If this is new i3 functionality, please add a link to the i3 pull request.
18
19- **Description:**
20 - Please describe in plain English how Sway and i3's behaviors differ or what functionality Sway is lacking.