leo/bors.toml

22 lines
646 B
TOML
Raw Normal View History

2021-02-11 06:31:26 +03:00
# List of commit statuses that must pass on the merge commit before it is pushed to master.
2021-01-30 03:18:59 +03:00
status = [
2021-02-11 00:28:40 +03:00
# Cargo fmt check must pass
2021-02-11 03:21:17 +03:00
"Check Style",
2021-02-11 00:28:40 +03:00
# Cargo clippy check must pass
2021-02-11 06:31:40 +03:00
"Clippy",
2021-02-11 06:31:26 +03:00
# Cargo test check must pass
2021-02-11 09:11:34 +03:00
"Test (stable)",
"Test (nightly)"
2021-02-11 06:31:26 +03:00
]
# Number of project members who must approve the PR (using GitHub Reviews) before it is pushed to master.
required_approvals = 1
2021-02-11 06:31:26 +03:00
# Approvals up to date with the latest PR commit will count towards the number of required approvals.
up_to_date_approvals = true
# List of PR labels that may not be attached to a PR when it is r+-ed.
# block_labels = [ "wip" ]