Pull request body should contain a trailing line that documents the costs of solving the task. #85

Closed
Jmaa wants to merge 3 commits from issue-80-pull-request-body-should-contain-a-trailing-line-that-documents-the-costs-of-solving-the-task into main
Showing only changes of commit d898d91bfa - Show all commits

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']