about summary refs log tree commit diff
path: root/nixpkgs/doc/contributing/staging-workflow.dot
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/doc/contributing/staging-workflow.dot')
-rw-r--r--nixpkgs/doc/contributing/staging-workflow.dot16
1 files changed, 0 insertions, 16 deletions
diff --git a/nixpkgs/doc/contributing/staging-workflow.dot b/nixpkgs/doc/contributing/staging-workflow.dot
deleted file mode 100644
index faca7a1cad4c..000000000000
--- a/nixpkgs/doc/contributing/staging-workflow.dot
+++ /dev/null
@@ -1,16 +0,0 @@
-digraph {
-    "small changes" [shape=none]
-    "mass-rebuilds and other large changes" [shape=none]
-    "critical security fixes" [shape=none]
-    "broken staging-next fixes" [shape=none]
-
-    "small changes" -> master
-    "mass-rebuilds and other large changes" -> staging
-    "critical security fixes" -> master
-    "broken staging-next fixes" -> "staging-next"
-
-    "staging-next" -> master [color="#E85EB0"] [label="stabilization ends"] [fontcolor="#E85EB0"]
-    "staging" -> "staging-next" [color="#E85EB0"] [label="stabilization starts"] [fontcolor="#E85EB0"]
-
-    master -> "staging-next" -> staging [color="#5F5EE8"] [label="every six hours (GitHub Action)"] [fontcolor="#5F5EE8"]
-}