We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0db897 commit 475564dCopy full SHA for 475564d
.github/workflows/todo.yml
@@ -1,9 +1,36 @@
1
-name: Smart TODO Tracker
2
-
3
on:
4
push:
5
branches: [main]
6
+ workflow_dispatch:
+ inputs:
7
+ report:
8
+ description: 'Generate TODO markdown report?'
9
+ required: true
10
+ default: 'true'
11
+ type: choice
12
+ options:
13
+ - true
14
+ - false
15
+
16
+ structured:
17
+ description: 'Enable structured tag parsing?'
18
19
+ default: 'false'
20
21
22
23
24
25
+ llm:
26
+ description: 'Use LLM for title/body generation?'
27
28
29
30
31
32
33
34
jobs:
35
smart-todo:
36
runs-on: ubuntu-latest
0 commit comments