Skip to content

No error message on form field without input #54

No error message on form field without input

No error message on form field without input #54

Workflow file for this run

name: Find ToDos
on:
pull_request:
types:
- opened
- synchronize
- reopend
jobs:
find_todo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Find ToDos
run: |
if git grep -nEwi "TODO|FIXME|XXX" -- ':!.github/workflows/todos.yml'; then
exit 1
else
echo "All good"
fi