-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
64 lines (52 loc) · 1.54 KB
/
Taskfile.yml
File metadata and controls
64 lines (52 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3"
tasks:
tree:
desc: Show the main workspace structures
cmds:
- python3 scripts/workctl.py tree
- python3 scripts/expctl.py tree
guide:
desc: Show folder guidance. Example: task guide -- work
cmds:
- python3 scripts/workctl.py guide {{.CLI_ARGS}}
task:new:
desc: Create a new generic work item
cmds:
- python3 scripts/workctl.py init {{.CLI_ARGS}}
task:list:
desc: List generic work items
cmds:
- python3 scripts/workctl.py list {{.CLI_ARGS}}
task:move:
desc: Move a generic work item to another status
cmds:
- python3 scripts/workctl.py move {{.CLI_ARGS}}
task:validate:
desc: Validate generic work item structure
cmds:
- python3 scripts/workctl.py validate {{.CLI_ARGS}}
task:sync-index:
desc: Rewrite work/INDEX.md from current tasks
cmds:
- python3 scripts/workctl.py sync-index
experiment:new:
desc: Create a new experiment
cmds:
- python3 scripts/expctl.py init {{.CLI_ARGS}}
experiment:list:
desc: List experiments
cmds:
- python3 scripts/expctl.py list {{.CLI_ARGS}}
experiment:move:
desc: Move an experiment to another status
cmds:
- python3 scripts/expctl.py move {{.CLI_ARGS}}
experiment:validate:
desc: Validate experiment structure
cmds:
- python3 scripts/expctl.py validate {{.CLI_ARGS}}
validate:
desc: Validate both generic work and experiments
cmds:
- python3 scripts/workctl.py validate --all
- python3 scripts/expctl.py validate --all