yuto-trd/Find TODOs in pull requests
A GitHub Action to find TODOs in pull requests.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| path | The path to search for TODOs. | no | ["*.cs","*.js","*.jsx","*.ts","*.tsx","*.css","*.scss","*.sass"] |
| commit | The commit to compare the current commit to. | no | ${{ github.event.pull_request.base.ref }} |
| single_line_comment | The regex pattern to match single-line comments. | no | \/\/.* |
| multi_line_comment_start | The regex pattern to match the start of a multi-line comment. | no | \/\* |
| multi_line_comment_end | The regex pattern to match the end of a multi-line comment. | no | \*\/ |
| regex | The regex pattern to match the keywords. | no | TODO |
Outputs
| name | description |
|---|---|
| tasks | — |
| tasks_count | — |