rustfmt
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
5f8b7d1c17
commit
b8987f6eeb
1 changed files with 23 additions and 25 deletions
|
@ -19,31 +19,29 @@ use log::debug;
|
|||
pub fn format_webhook(wh: &WebHook) -> Option<String> {
|
||||
Some(match wh {
|
||||
WebHook::Push(push) => {
|
||||
if push.commits.len() != 0 {
|
||||
let mut text = format!(
|
||||
"[{}] {} pushed {} commits branch {}",
|
||||
push.project.name,
|
||||
push.user_name,
|
||||
push.commits.len(),
|
||||
push.ref_,
|
||||
);
|
||||
for commit in &push.commits {
|
||||
match commit.message.lines().nth(0) {
|
||||
Some(subject) => {
|
||||
text = format!("{}\n• {} <{}>", text, subject, commit.url);
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
}
|
||||
text
|
||||
} else {
|
||||
format!(
|
||||
"[{}] {} deleted branch {}",
|
||||
push.project.name,
|
||||
push.user_name,
|
||||
push.ref_,
|
||||
)
|
||||
}
|
||||
if push.commits.len() != 0 {
|
||||
let mut text = format!(
|
||||
"[{}] {} pushed {} commits branch {}",
|
||||
push.project.name,
|
||||
push.user_name,
|
||||
push.commits.len(),
|
||||
push.ref_,
|
||||
);
|
||||
for commit in &push.commits {
|
||||
match commit.message.lines().nth(0) {
|
||||
Some(subject) => {
|
||||
text = format!("{}\n• {} <{}>", text, subject, commit.url);
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
}
|
||||
text
|
||||
} else {
|
||||
format!(
|
||||
"[{}] {} deleted branch {}",
|
||||
push.project.name, push.user_name, push.ref_,
|
||||
)
|
||||
}
|
||||
}
|
||||
WebHook::Issue(issue) => {
|
||||
let action = match issue.object_attributes.action {
|
||||
|
|
Loading…
Reference in a new issue