File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ pub async fn updates(
80
80
let status_badge = match issue. state {
81
81
ExistingIssueState :: Open => {
82
82
format ! (
83
- "" ,
84
- completed * 100 / total
83
+ "" ,
84
+ percent = completed * 100 / total
85
85
)
86
86
}
87
87
ExistingIssueState :: Closed if completed == total => {
@@ -118,7 +118,7 @@ pub async fn updates(
118
118
let updates: String = comments. iter ( ) . map ( |c| format ! ( "\n {}\n " , c. body) ) . collect ( ) ;
119
119
let summary = llm. query ( & prompt, & updates) . await ?;
120
120
writeln ! ( output) ?;
121
- writeln ! ( output, "UPDATE: {}" , summary) ?;
121
+ writeln ! ( output, "{}" , summary) ?;
122
122
} else {
123
123
writeln ! ( output) ?;
124
124
writeln ! ( output, "No updates in this period." ) ?;
You can’t perform that action at this time.
0 commit comments