Skip to content

Deploy security rules #69

Deploy security rules

Deploy security rules #69

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