From d898d91bfa6a6dfb1dc6edc46829931bcccca4f9 Mon Sep 17 00:00:00 2001 From: "Jon Michael Aanes (aider)" Date: Tue, 15 Apr 2025 23:42:52 +0200 Subject: [PATCH] feat: add cost documentation to pull request description --- aider_gitea/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aider_gitea/__init__.py b/aider_gitea/__init__.py index 2ba421e..a48892a 100644 --- a/aider_gitea/__init__.py +++ b/aider_gitea/__init__.py @@ -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']