Skip to content

Commit

Permalink
Make Forbid TODOs check into its own CI step
Browse files Browse the repository at this point in the history
- Fixes #2180
  • Loading branch information
pokey committed Apr 26, 2024
1 parent a1bb6e4 commit 11127f0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/forbid-todos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Forbid TODOs

on:
pull_request:
types: [opened, synchronize, reopened]
merge_group:
branches: [main]

jobs:
test-docs-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Forbid TODOs
run: ./scripts/forbid-todo.sh
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,3 @@ jobs:
name: dumps
path: ${{ env.VSCODE_CRASH_DIR }}
if: failure()
- name: Forbid TODOs
run: ./scripts/forbid-todo.sh

0 comments on commit 11127f0

Please sign in to comment.