Skip to content

Commit 9f09b42

Browse files
authored
Merge pull request #124 from joshuagl/joshuagl/tap-process
TAP workflow refinement
2 parents 5514185 + 3e6a910 commit 9f09b42

File tree

5 files changed

+100
-41
lines changed

5 files changed

+100
-41
lines changed

tap1-1.dot

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Converted into a png with: dot -Tpng -o tap1-flow.png tap1-flow.dot
2+
digraph {
3+
node[shape=box, style=rounded]
4+
5+
{rank=same; Accepted, Draft, Final}
6+
{rank=same; Superseded, Rejected, Withdrawn}
7+
8+
Draft -> Accepted
9+
Accepted -> Final
10+
Draft -> Deferred
11+
Deferred -> Draft
12+
Draft -> Rejected
13+
Draft -> Withdrawn
14+
Final -> Superseded
15+
Draft -> Active
16+
Active -> Superseded
17+
}

tap1-1.png

27.4 KB
Loading

0 commit comments

Comments
 (0)