Merge pull request #457 from cole-h/logging

More logging
This commit is contained in:
Graham Christensen 2020-04-07 16:39:28 -04:00 committed by GitHub
commit 83d748169c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View file

@ -373,7 +373,8 @@ impl notifyworker::SimpleNotifyWorker for BuildWorker {
};
info!("ok built ({:?}), building", status);
info!("Lines:\n-----8<-----");
info!("Lines:");
info!("-----8<-----");
actions
.log_snippet()
.iter()

View file

@ -566,8 +566,18 @@ impl<'a> EvaluationStrategy for NixpkgsStrategy<'a> {
}
fn request_reviews(maint: &maintainers::ImpactedMaintainers, pull: &hubcaps::pulls::PullRequest) {
let pull_meta = pull.get();
if maint.maintainers().len() < 10 {
for maintainer in maint.maintainers() {
if let Ok(meta) = &pull_meta {
// GitHub doesn't let us request a review from the PR author, so
// we silently skip them.
if meta.user.login.to_ascii_lowercase() == maintainer.to_ascii_lowercase() {
continue;
}
}
if let Err(e) =
pull.review_requests()
.create(&hubcaps::review_requests::ReviewRequestOptions {