Automated issue wrap-up including: - Implementation completion verification - Test execution and validation - Cost tracking and note generation - Repository state commit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
d24479b8a2
commit
20e7f0f5bd
6 changed files with 1816 additions and 2 deletions
|
|
@ -132,8 +132,8 @@ class IssueWrapUpService:
|
|||
)
|
||||
|
||||
has_implementation = any(
|
||||
'implement' in activity.get('activity_type', '').lower() or
|
||||
'code' in activity.get('description', '').lower()
|
||||
'implement' in (activity.activity_type.value if activity.activity_type else '').lower() or
|
||||
'code' in (activity.activity_details or '').lower()
|
||||
for activity in activities
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue