Checks your source files for TODO and FIXME comments, where they don't have an open issue number. (Inspired by https://woodpecker-ci.org/plugins/TODO-Checker)
Find a file
Renovate Bot faf45f3d61
All checks were successful
Test / checks (map[name:stable]) (pull_request) Successful in 2m36s
Test / checks (map[name:nightly]) (pull_request) Successful in 5m51s
Test / checks (map[name:nightly]) (push) Successful in 1m48s
Test / checks (map[name:stable]) (push) Successful in 2m18s
chore(deps): update kemitix/rust action to v2.2.0
2024-09-25 08:30:56 +00:00
.forgejo/workflows chore(deps): update kemitix/rust action to v2.2.0 2024-09-25 08:30:56 +00:00
src fix: Only look for issue number within the comment 2024-09-22 11:06:54 +01:00
.gitignore feat: use Dockerfile (hello world) 2024-09-17 16:37:40 +01:00
.ignore build: don't check README for TODO/FIXME comments 2024-09-20 21:50:05 +01:00
Cargo.toml chore: release v1.1.0 2024-09-22 14:50:20 +01:00
CHANGELOG.md chore: release v1.1.0 2024-09-22 14:50:20 +01:00
cliff.toml build: add prep-release recipe to justfile 2024-09-22 14:50:11 +01:00
Dockerfile feat: use Dockerfile (hello world) 2024-09-17 16:37:40 +01:00
justfile build: add prep-release recipe to justfile 2024-09-22 14:50:11 +01:00
LICENSE Initial commit 2024-09-17 15:35:04 +01:00
README.md fix: Only look for issue number within the comment 2024-09-22 11:06:54 +01:00
renovate.json build(renovate): ignore alias kemitix/todo-checker 2024-09-22 20:05:06 +01:00

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)

code.forgejo.org Mirror

Main development takes place on git.kemitix.net.

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

This mirror allows you to refer to the action as simply kemitix/todo-checker@v1.0.0.

Usage

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

      - name: Check TODOs
        # Original:
        # uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@v1.0.0
        # Codeberg mirror:
        uses: kemitix/todo-checker@v1.0.0

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+)\)

- 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.