aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2023-07-07 10:44:56 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2023-07-07 21:18:08 +1000
commite3908eb36062883cc56c3f60ebdcaa835ea4298d (patch)
tree4d16011b0329fe42e488ef92a0f63a64439c82ed
parentdebug: Replace "@<id>" with "#<id>" in logs (diff)
downloadwayland-e3908eb36062883cc56c3f60ebdcaa835ea4298d.tar
wayland-e3908eb36062883cc56c3f60ebdcaa835ea4298d.tar.gz
wayland-e3908eb36062883cc56c3f60ebdcaa835ea4298d.tar.bz2
wayland-e3908eb36062883cc56c3f60ebdcaa835ea4298d.tar.lz
wayland-e3908eb36062883cc56c3f60ebdcaa835ea4298d.tar.xz
wayland-e3908eb36062883cc56c3f60ebdcaa835ea4298d.tar.zst
wayland-e3908eb36062883cc56c3f60ebdcaa835ea4298d.zip
Add a triage-policies file for bugbot
With a default template for the common case of "this is not a protocol bug". Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--.triage-policies.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.triage-policies.yml b/.triage-policies.yml
new file mode 100644
index 0000000..580bead
--- /dev/null
+++ b/.triage-policies.yml
@@ -0,0 +1,33 @@
+# This is a set of bugbot commands for issues and merge requests - setting any of the
+# bugbot::foo labels will trigger gitlab-triage to run with this ruleset (well, the
+# one we have on the main branch at the time)
+#
+# Note that for adding labels, the label must first created in the project.
+resource_rules:
+ issues:
+ rules:
+ - name: "Close bugs that aren't Wayland bugs"
+ conditions:
+ labels:
+ - "bugbot::not-wayland"
+ actions:
+ remove_labels:
+ - "bugbot::not-wayland"
+ comment: |
+ Thank you for the report, but your issue does not look like it would belong here. Sorry.
+
+ This repository is for the Wayland protocol specification and the
+ low-level C library that deals with the protocol.
+
+ This issue here is a bug not with the protocol itself but with either
+ - your compositor or desktop environment's implementation of the Wayland protocol and surrounding functionality,
+ - the individual application that triggers this issue, or
+ - the kernel driver used by your hardware
+
+ Please file the issue against your compositor/desktop environment, the application
+ or the kernel drivers instead, whichever seems more likely to you. If you are not sure,
+ file an issue against the application.
+ status: "close"
+ merge_requests:
+ rules:
+ []