2023-07-04 12:14:04 +10:00
|
|
|
# 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:
|
2023-07-04 13:52:44 +10:00
|
|
|
- name: "Close kernel bugs"
|
|
|
|
|
conditions:
|
|
|
|
|
labels:
|
|
|
|
|
- "bugbot::kernel"
|
|
|
|
|
actions:
|
|
|
|
|
labels:
|
|
|
|
|
- "kernel"
|
|
|
|
|
remove_labels:
|
|
|
|
|
- "bugbot::kernel"
|
|
|
|
|
comment: |
|
|
|
|
|
This bug looks like a kernel issue and it cannot be fixed
|
|
|
|
|
in libinput directly. I'm closing this bug but do feel free
|
|
|
|
|
to continue discussing the issue here.
|
|
|
|
|
|
|
|
|
|
Kernel bugs are usually best sent to the [`linux-input` list](https://lore.kernel.org/linux-input/).
|
|
|
|
|
status: "close"
|
2023-07-04 12:14:04 +10:00
|
|
|
merge_requests:
|
|
|
|
|
rules:
|
|
|
|
|
- name: "Remind contributor of commit rules"
|
|
|
|
|
conditions:
|
|
|
|
|
labels:
|
|
|
|
|
- "bugbot::commit-rules"
|
|
|
|
|
actions:
|
|
|
|
|
remove_labels:
|
|
|
|
|
- "bugbot::commit-rules"
|
|
|
|
|
comment: |
|
|
|
|
|
Hi. Looks like the pipeline failed because one or more of the commits in this MR do not meet our requirements.
|
2023-07-20 14:01:25 +10:00
|
|
|
Most commonly this the format of the commit message itself. The "Test summary" above has the details.
|
2023-07-04 12:14:04 +10:00
|
|
|
|
|
|
|
|
Please see [our docs for commit messages](https://wayland.freedesktop.org/libinput/doc/latest/contributing.html#commit-messages)
|
|
|
|
|
and [our docs for submitting code](https://wayland.freedesktop.org/libinput/doc/latest/contributing.html#submitting-code)
|
|
|
|
|
that explain how to amend and force-push to this repo.
|