xref: /dokuwiki/.github/workflows/todoChecker.yml (revision c156c07d063ffc66b39b54522388ed6dba835456)
1*c156c07dSAndreas Gohrname: PR Todo Checker
2*c156c07dSAndreas Gohr
3*c156c07dSAndreas Gohron:
4*c156c07dSAndreas Gohr  pull_request_review_comment:
5*c156c07dSAndreas Gohr    types: [edited, deleted]
6*c156c07dSAndreas Gohr  pull_request:
7*c156c07dSAndreas Gohr    types: [opened, synchronize, reopened]
8*c156c07dSAndreas Gohr
9*c156c07dSAndreas Gohrjobs:
10*c156c07dSAndreas Gohr  find_todos:
11*c156c07dSAndreas Gohr    runs-on: ubuntu-latest
12*c156c07dSAndreas Gohr
13*c156c07dSAndreas Gohr    steps:
14*c156c07dSAndreas Gohr      - name: Checkout code
15*c156c07dSAndreas Gohr        uses: actions/checkout@v4
16*c156c07dSAndreas Gohr
17*c156c07dSAndreas Gohr      - name: Check for Todos
18*c156c07dSAndreas Gohr        uses: phntmxyz/pr_todo_checker@v1
19*c156c07dSAndreas Gohr        with:
20*c156c07dSAndreas Gohr          token: ${{ secrets.GITHUB_TOKEN }}
21