feat: add cost documentation to pull request description

This commit is contained in:
Jon Michael Aanes (aider) 2025-04-15 23:42:52 +02:00
parent 54476b5584
commit d898d91bfa

View File

@ -226,6 +226,9 @@ def push_changes(
description += '## Commit Messages\n\n'
for message in commit_messages:
description += f'- {message}\n'
# Add trailing line documenting costs
description += '\n## Costs\nThis task was solved using AI assistance.'
# First push the branch without creating a PR
cmd = ['git', 'push', 'origin', branch_name, '--force']