mirror of
https://github.com/sigp/lighthouse.git
synced 2026-07-03 12:54:27 +00:00
Compare commits
2 Commits
glamsterda
...
mergify-co
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
91b37bb92a | ||
|
|
a36a64322d |
19
.github/mergify.yml
vendored
19
.github/mergify.yml
vendored
@@ -12,8 +12,7 @@ pull_request_rules:
|
|||||||
- milestone~=v[0-9]\.[0-9]{2}
|
- milestone~=v[0-9]\.[0-9]{2}
|
||||||
actions:
|
actions:
|
||||||
comment:
|
comment:
|
||||||
message: This pull request has merge conflicts. Could you please resolve them
|
message: This pull request has merge conflicts. Could you please resolve them @{{author}}? 🙏
|
||||||
@{{author}}? 🙏
|
|
||||||
label:
|
label:
|
||||||
add:
|
add:
|
||||||
- waiting-on-author
|
- waiting-on-author
|
||||||
@@ -98,17 +97,11 @@ queue_rules:
|
|||||||
batch_max_wait_time: 60 s
|
batch_max_wait_time: 60 s
|
||||||
checks_timeout: 10800 s
|
checks_timeout: 10800 s
|
||||||
merge_method: squash
|
merge_method: squash
|
||||||
commit_message_template: |
|
commit_message_format:
|
||||||
{{ title }} (#{{ number }})
|
title: pr-title
|
||||||
|
body: pr-body
|
||||||
{{ body | get_section("## Issue Addressed", "") }}
|
trailers:
|
||||||
|
- co-authored-by
|
||||||
|
|
||||||
{{ body | get_section("## Proposed Changes", "") }}
|
|
||||||
|
|
||||||
{% for commit in commits | unique(attribute='email_author') %}
|
|
||||||
Co-Authored-By: {{ commit.author }} <{{ commit.email_author }}>
|
|
||||||
{% endfor %}
|
|
||||||
queue_conditions:
|
queue_conditions:
|
||||||
- "#approved-reviews-by >= 1"
|
- "#approved-reviews-by >= 1"
|
||||||
- "check-success=license/cla"
|
- "check-success=license/cla"
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -2475,7 +2475,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de"
|
checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"data-encoding",
|
"data-encoding",
|
||||||
"syn 1.0.109",
|
"syn 2.0.117",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
@@ -108,7 +108,6 @@ impl GenericExecutionEngine for GethEngine {
|
|||||||
.arg(http_auth_port.to_string())
|
.arg(http_auth_port.to_string())
|
||||||
.arg("--port")
|
.arg("--port")
|
||||||
.arg(network_port.to_string())
|
.arg(network_port.to_string())
|
||||||
.arg("--allow-insecure-unlock")
|
|
||||||
.arg("--authrpc.jwtsecret")
|
.arg("--authrpc.jwtsecret")
|
||||||
.arg(jwt_secret_path.as_path().to_str().unwrap())
|
.arg(jwt_secret_path.as_path().to_str().unwrap())
|
||||||
// This flag is required to help Geth perform reliably when feeding it blocks
|
// This flag is required to help Geth perform reliably when feeding it blocks
|
||||||
|
|||||||
Reference in New Issue
Block a user