mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
18 lines
No EOL
489 B
YAML
18 lines
No EOL
489 B
YAML
name: Kanban
|
|
foreground: "#87ceeb"
|
|
background: "#25496a"
|
|
key: "F1"
|
|
lanes:
|
|
- name: Ready
|
|
filter: status = 'ready' and type != 'epic'
|
|
action: status = 'ready'
|
|
- name: In Progress
|
|
filter: status = 'in_progress' and type != 'epic'
|
|
action: status = 'in_progress'
|
|
- name: Review
|
|
filter: status = 'review' and type != 'epic'
|
|
action: status = 'review'
|
|
- name: Done
|
|
filter: status = 'done' and type != 'epic'
|
|
action: status = 'done'
|
|
sort: Priority, CreatedAt |