summaryrefslogtreecommitdiff
path: root/legend.yaml
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-09-21 20:51:16 +0300
committerLars Wirzenius <liw@liw.fi>2019-09-21 20:51:16 +0300
commit73c4f5795ce1b72319b4f872ec38b93a76b34f00 (patch)
treebc5d5bb5fb6e1431138f53a8b0f28979b221c5b8 /legend.yaml
parent07e49973baac0e9db3ee5b1deffb0224aca5c915 (diff)
downloadroadmap-73c4f5795ce1b72319b4f872ec38b93a76b34f00.tar.gz
Add: a legend, as an example
Diffstat (limited to 'legend.yaml')
-rw-r--r--legend.yaml40
1 files changed, 40 insertions, 0 deletions
diff --git a/legend.yaml b/legend.yaml
new file mode 100644
index 0000000..9bb3be7
--- /dev/null
+++ b/legend.yaml
@@ -0,0 +1,40 @@
+goal:
+ label: |
+ This is the end goal:
+ if we reach here, there
+ is nothing more to be
+ done in the project
+ depends:
+ - finished
+ - blocked
+
+finished:
+ status: finished
+ label: |
+ This task is finished;
+ the arrow indicates what
+ follows this task (unless
+ it's blocked)
+
+ready:
+ status: ready
+ label: |
+ This task is ready
+ to be done: it is not
+ blocked by anything
+
+next:
+ status: next
+ label: |
+ This task is chosen
+ to be done next
+
+blocked:
+ status: blocked
+ label: |
+ This task is blocked
+ and can't be done until
+ something happens
+ depends:
+ - ready
+ - next