mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-04 18:15:08 +02:00
It seems mergify only checks for `.yml`, not `.yaml` files. Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
21 lines
610 B
YAML
21 lines
610 B
YAML
# Essential reading on condition syntax:
|
|
# https://docs.mergify.com/configuration/conditions/#testing-and-debugging-conditions
|
|
|
|
# https://docs.mergify.com/merge-queue
|
|
queue_rules:
|
|
- name: default
|
|
update_method: rebase
|
|
merge_method: fast-forward
|
|
merge_conditions:
|
|
- check-success = buildbot/nix-eval
|
|
queue_conditions:
|
|
- or:
|
|
# Allow queuing PRs that have been approved
|
|
- "#approved-reviews-by >= 1"
|
|
|
|
# Allow queuing flake.lock updates without approval
|
|
- and:
|
|
- "#files = 1"
|
|
- files = flake.lock
|
|
- author = GaetanLepage
|
|
|