diff options
author | Martin Czygan <martin@archive.org> | 2021-09-21 18:34:31 +0000 |
---|---|---|
committer | Martin Czygan <martin@archive.org> | 2021-09-21 18:34:31 +0000 |
commit | a37404f30b2c1afa0b46ee30a5b59d7312c119d0 (patch) | |
tree | 8f38d396909049971559a5ab574561960d6d5f22 /notes/workflow_schema.dot | |
parent | c587a084defe54103aa147b7ab91542a11a548b1 (diff) | |
parent | 5fa61d89320af880d5bf6b3231f6478887cfb6a6 (diff) | |
download | fuzzycat-a37404f30b2c1afa0b46ee30a5b59d7312c119d0.tar.gz fuzzycat-a37404f30b2c1afa0b46ee30a5b59d7312c119d0.zip |
Merge branch 'wip-martin-review-cleanup' into 'master'
review notes and some cleanup
See merge request webgroup/fuzzycat!7
Diffstat (limited to 'notes/workflow_schema.dot')
-rw-r--r-- | notes/workflow_schema.dot | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/notes/workflow_schema.dot b/notes/workflow_schema.dot new file mode 100644 index 0000000..365163f --- /dev/null +++ b/notes/workflow_schema.dot @@ -0,0 +1,16 @@ +digraph steps { + node [shape=plaintext, fontname="helvetica"]; + graph [fontname = "helvetica"]; + edge [fontname = "helvetica"]; + + "release_export_expanded.json" -> "clustered"; + "clustered" -> "verified"; + "verified" -> "manual review"; + "manual review" -> "discover pattern"; + "manual review" -> "fix codepath"; + "fix codepath" -> "add verification test case"; + "discover pattern" -> "add verification test case"; + "discover pattern" -> "fix codepath"; + "fix codepath" -> "discover pattern"; + "add verification test case" -> "clustered"; +} |