forgejo-todo-checker/README.md
Paul Campbell b50f73b7b7
All checks were successful
Test / build (map[name:stable]) (push) Successful in 5m51s
Test / build (map[name:nightly]) (push) Successful in 5m2s
feat: add cli args to help run locally
2025-01-05 09:05:11 +00:00

3.2 KiB

forgejo-todo-checker

Checks your source files for TODO and FIXME comments, failing your build where they don't have an open issue number.

(Inspired by https://woodpecker-ci.org/plugins/TODO-Checker)

LATEST version

See Releases for the latest version. Replace ${LATEST} in the examples below with the tag version (include any leading v).

code.forgejo.org Mirror

Main development takes place on git.kemitix.net.

There is a mirror on code.forgejo.org as kemitix/todo-checker.

This mirror allows you to refer to the action as simply kemitix/todo-checker@${LATEST}.

Usage

Forgejo Action

jobs:
  tests:
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Check TODOs
        # Original:
        # uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@${LATEST}
        # Codeberg mirror:
        uses: kemitix/todo-checker@${LATEST}

Local CLI

You can also run the command in your local environment:

forgejo-todo-checker --workspace $PWD --site https://git.kemitix.net --repo kemitix/forgejo-todo-checker

Replace the site url with the Forgejo instance where the issues are held.

Comments Format

This Action looks for comments in the following formats:

// TODO: (#19) This is the comment
// FIXME (#29) This is the other comment
# TODO (#19) This is the comment
# FIXME: (#29) This is the other comment

These are all considered valid comments. Pick the format that fits your language or file best.

Comments are found by matching them against this regular expression: (#|//)\s*(TODO|FIXME):?

i.e.: be a comment by starting with either '#' or '//', then the word TODO or FIXME in all caps, with or without a trailing ':'.

Once we have a line with such a comment we look for the Issue Number with: \(#?(?P<ISSUE_NUMBER>\d+)\)

i.e.: a number in '()', with or without a leading '#' (inside the braces) immediately after the 'TODO' or 'FIXME'.

The ISSUE_NUMBER must correspond to an OPEN Issue in the repo that the Action is running against.

If the issue has been closed or can't be found then the comment is marked as an error and the Check with fail.

Example Output

The output will be similar to the following if there are any errors:

Forgejo TODO Checker!

Repo : kemitix/my-project
Regex: (#|//)\s*(TODO|FIXME):?\s*\(#?(?P<ISSUE_NUMBER>\d+)\)

> https://git.kemitix.net/api/v1/repos/kemitix/forgejo-todo-checker/issues?state=open
< 200 OK
- Issue number missing: src/main.rs#38:
 // TODO: implement this cool feature and get rich!

>> 1 error in src/main.rs

- Closed/Invalid Issue: (19) src/model/line.rs#12:
 // TODO: (#19) This is the comment

>> 1 error in src/model/line.rs

Error: Invalid or closed TODO/FIXMEs found

The first error is because there is no issue number associated with the TODO comment.

The second error is because the issue has already been closed.

License

forgejo-todo-checker is released under the MIT License.