We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f1c99e commit 1f794c0Copy full SHA for 1f794c0
bot/code_review_bot/workflow.py
@@ -140,9 +140,14 @@ def ingest_autoland(self, revision):
140
issues += task_issues
141
142
# Store the revision & diff in the backend
143
- # TODO: publish state (issues or not issues)
144
self.backend_api.publish_revision(revision)
145
+ # Publish issues when there are some
146
+ if issues:
147
+ self.backend_api.publish_issues(issues, revision)
148
+ else:
149
+ logger.info("No issues for that autoland revision")
150
+
151
def publish(self, revision, issues, task_failures):
152
"""
153
Publish issues on selected reporters
0 commit comments