File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 17
17
shell : bash
18
18
# TODOs may be committed as long as the same line contains a link to a Github Issue or refers to a CrypTool SIM.
19
19
run : |
20
- ALL_TODO_COUNT=$( { grep -r "TODO" . --exclude-dir=./releases --exclude-dir=./TestVectors/runtimes --exclude-dir=./submodules --exclude-dir=./.git --exclude=./.github/workflows/ci_todos.yml || true; } | wc -l)
20
+ ALL_TODO_COUNT=$( { grep -r "TODO" . -P "(?<!\.)TODO(?!\(\))" - -exclude-dir=./releases --exclude-dir=./TestVectors/runtimes --exclude-dir=./submodules --exclude-dir=./.git --exclude=./.github/workflows/ci_todos.yml || true; } | wc -l)
21
21
GOOD_TODO_COUNT=$( { grep -r "TODO.*\(github.com\/.*issues.*\/[1-9][0-9]*\|CrypTool-[1-9][0-9]*\)" . --exclude-dir=./releases --exclude-dir=./submodules --exclude-dir=./.git --exclude-dir=./TestVectors/runtimes --exclude=./.github/workflows/ci_todos.yml || true; } | wc -l)
22
22
if [ "$ALL_TODO_COUNT" != "$GOOD_TODO_COUNT" ]; then
23
23
exit 1;
You can’t perform that action at this time.
0 commit comments