mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-10 13:24:15 +03:00
b8fc28e840
In the future having 2 code owners review will be standard on large changes. Setting the bors minimum to 1 will give flexibility for small changes.
22 lines
646 B
TOML
22 lines
646 B
TOML
# List of commit statuses that must pass on the merge commit before it is pushed to master.
|
|
status = [
|
|
# Cargo fmt check must pass
|
|
"Check Style",
|
|
|
|
# Cargo clippy check must pass
|
|
"Clippy",
|
|
|
|
# Cargo test check must pass
|
|
"Test (stable)",
|
|
"Test (nightly)"
|
|
]
|
|
|
|
# Number of project members who must approve the PR (using GitHub Reviews) before it is pushed to master.
|
|
required_approvals = 1
|
|
|
|
# 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" ]
|