feat: +annotation

This commit is contained in:
莘权 马 2023-11-27 12:03:21 +08:00
parent c483d0d7a3
commit 5ea488d37a

View file

@ -216,7 +216,7 @@ class WriteTasks(Action):
)
change_files.docs[filename] = task_doc
# Rewrite the task files that have undergone changes based on the git head diff under docs/tasks/.
# Rewrite the task files that have undergone changes based on the git head diff under `docs/tasks/`.
for filename in changed_tasks:
if filename in change_files.docs:
continue
@ -227,7 +227,7 @@ class WriteTasks(Action):
if not change_files.docs:
logger.info("Nothing has changed.")
# Wait until all files under `docs/tasks/` are processed before sending the publish message, leaving room for
# Wait until all files under `docs/tasks/` are processed before sending the publish_message, leaving room for
# global optimization in subsequent steps.
return ActionOutput(content=change_files.json(), instruct_content=change_files)