Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,36 @@ on:
push:
branches: [main]

workflow_dispatch:
inputs:
report:
description: 'Generate TODO markdown report?'
required: true
default: 'true'
type: choice
options:
- true
- false

structured:
description: 'Enable structured tag parsing?'
required: true
default: 'false'
type: choice
options:
- true
- false

llm:
description: 'Use LLM for title/body generation?'
required: true
default: 'false'
type: choice
options:
- true
- false


jobs:
smart-todo:
runs-on: ubuntu-latest
Expand Down