'Merged' note
This commit is contained in:
parent
85322ca9c1
commit
dbb856a7d9
@ -68,6 +68,13 @@ impl PullRequest {
|
|||||||
pub fn body(&self) -> &str {
|
pub fn body(&self) -> &str {
|
||||||
&self.body
|
&self.body
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn note(&self) -> &str {
|
||||||
|
match &self.state {
|
||||||
|
PullRequestStatus::Open => "N/A",
|
||||||
|
PullRequestStatus::Closed => "Merged"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize, Debug)]
|
#[derive(Deserialize, Debug)]
|
||||||
|
@ -34,7 +34,7 @@ pub fn build_table(graph: Graph<Rc<PullRequest>, usize>, title: &str) -> String
|
|||||||
node.title(),
|
node.title(),
|
||||||
graph[parent.source()].number()
|
graph[parent.source()].number()
|
||||||
),
|
),
|
||||||
None => format!("|#{}|{}|**N/A**|\n", node.number(), node.title()),
|
None => format!("|#{}|{}|**{}**|\n", node.number(), node.title(), node.note()),
|
||||||
};
|
};
|
||||||
|
|
||||||
out.push_str(&process(row));
|
out.push_str(&process(row));
|
||||||
|
Loading…
Reference in New Issue
Block a user