.triage-policies.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. # This is a set of bugbot commands for issues and merge requests - setting any of the
  2. # bugbot::foo labels will trigger gitlab-triage to run with this ruleset (well, the
  3. # one we have on the main branch at the time)
  4. #
  5. # Note that for adding labels, the label must first created in the project.
  6. resource_rules:
  7. issues:
  8. rules:
  9. - name: "Close bugs that aren't Wayland bugs"
  10. conditions:
  11. labels:
  12. - "bugbot::not-wayland"
  13. actions:
  14. remove_labels:
  15. - "bugbot::not-wayland"
  16. comment: |
  17. Thank you for the report, but your issue does not look like it would belong here. Sorry.
  18. This repository is for the Wayland protocol specification and the
  19. low-level C library that deals with the protocol.
  20. This issue here is a bug not with the protocol itself but with either
  21. - your compositor or desktop environment's implementation of the Wayland protocol and surrounding functionality,
  22. - the individual application that triggers this issue, or
  23. - the kernel driver used by your hardware
  24. Please file the issue against your compositor/desktop environment, the application
  25. or the kernel drivers instead, whichever seems more likely to you. If you are not sure,
  26. file an issue against the application.
  27. status: "close"
  28. merge_requests:
  29. rules:
  30. []