start adding support for comments on issues #9

Merged
seb merged 4 commits from comments into main 2025-07-07 22:35:33 -06:00
Showing only changes of commit cd4eb82067 - Show all commits

View file

@ -144,7 +144,6 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
let Some(issue) = issues.get_mut_issue(issue_id) else { let Some(issue) = issues.get_mut_issue(issue_id) else {
return Err(anyhow::anyhow!("issue {} not found", issue_id)); return Err(anyhow::anyhow!("issue {} not found", issue_id));
}; };
println!("found issue {}", issue.title());
let mut comment = issue.new_comment()?; let mut comment = issue.new_comment()?;

can we make this a log::debug!()?

can we make this a `log::debug!()`?

I took it out entirely, that debug message no longer sparks joy.

I took it out entirely, that debug message no longer sparks joy.
match description { match description {
Some(description) => { Some(description) => {