On the bugbot dashboard (https://cursor.com/dashboard/bugbot), I can see the list of reviews and the “issues resolved” column. I see how the issues correspond to the bug bot review on the PR. I have no idea how to mark these issues as resolved….so all of our reviews shows “0/3", “0/2”, etc…. even though we have fixed the some of these issues. What am I missing?
Hi Will!
The “Issues Resolved” column on the BugBot dashboard is actually automatic, not something you manually mark. Here’s how it works:
When a PR is merged, BugBot runs a code analysis comparing each reported issue against the final merged code. If the analysis determines that the issue was addressed by the code changes, it’s counted as “resolved.” There’s no button or manual step needed on your end.
So if you’re seeing “0/3” or “0/2” on PRs that are still open, that’s expected. The resolution analysis hasn’t run yet because it only triggers at merge time. Once you merge those PRs, the counter should update automatically based on whether the code changes address the flagged issues.
A couple of things to note:
-
Resolving the BugBot comment threads on GitHub (clicking “Resolve conversation”) does not affect this dashboard metric. The two are independent.
-
After merge, if BugBot’s analysis doesn’t recognize your fix as addressing the issue, the counter may still show unresolved. This isn’t common, but it can happen since the analysis is LLM-based.
For more on BugBot in general: BugBot docs
Let me know if you have any follow-up questions!
Understood, thank you