Releases: phntmxyz/pr_todo_checker
Releases · phntmxyz/pr_todo_checker
PR Todo Checker V1.1.4
Bugfix: Add custom_ignore_matcher
to action.yml
PR Todo Checker V1.1.3
Add custom_ignore_matcher
to be able to ignore specific todos
PR Todo Checker V1.1.2
Support diff tags within the actual diff. Like @@ -109,9 +108,6 @@ class A extends B {
PR Todo Checker V1.1.1
Fix issues where todos could not be parsed when multiple diffs were in one diff
PR Todo Checker V1.1.0
Add custom Todo matcher
custom_todo_matcher: "{'js': ['//', '/*'], 'py': ['#']}"
PR Todo Checker V1.0.0
This GitHub Action scans your code for Todos, adds review comments, and creates a commit status based on the discovered Todos. It offers an effective means to stay organized and track tasks that require attention within your codebase.
Features V1
exclude
: (optional) A list of glob patterns to exclude from the search.comment_on_todo
: (optional) Whether to comment on the PR with the Todos
found. Default istrue
.comment_body
: (optional) The body of the comment to post on the PR. Use
{todo}
to insert the Todo content.comment_checkbox
: (optional) The text to use for the checkbox in the
comment. Use{todo}
to insert the Todo content