File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 33
44 ## Guidance
55
6+ - Do not use the get_new_commits tool since you already have the list of commits.
67 - Use the create_changelog tool to generate a changelog for the new commits.
78 - Focus on the new features and major fixes.
89 - Group and summarize other minor changes into "Miscellaneous" or "Other".
Original file line number Diff line number Diff line change @@ -373,6 +373,7 @@ def __str__(self) -> str:
373373
374374 def make_sync_wrapper (fn : t .Callable [..., t .Any ]) -> t .Callable [..., t .Any ]:
375375 def sync_wrapper (* args : t .Any , ** kwargs : t .Any ) -> t .Any :
376+ logger .debug (f"calling tool { fn .__name__ } from template" )
376377 coro = fn (* args , ** kwargs )
377378 # NOTE: we use a list to store the result because nonlocal variables (like scalars) inside a nested
378379 # function do not allow assignment unless explicitly declared nonlocal. However, mutable objects like
You can’t perform that action at this time.
0 commit comments