Add 'release' SchedulerSystem (#2295)

* Add 'release' SchedulerSystem

* Update app_dart/lib/src/model/proto/internal/scheduler.proto

Co-authored-by: Casey Hillers <chillers@google.com>

Co-authored-by: Casey Hillers <chillers@google.com>
diff --git a/app_dart/lib/src/model/proto/internal/scheduler.proto b/app_dart/lib/src/model/proto/internal/scheduler.proto
index f61a28c..8c59c37 100644
--- a/app_dart/lib/src/model/proto/internal/scheduler.proto
+++ b/app_dart/lib/src/model/proto/internal/scheduler.proto
@@ -67,7 +67,7 @@
 }
 
 // Schedulers supported in SchedulerConfig.
-// Next ID: 4
+// Next ID: 5
 enum SchedulerSystem {
     // Cocoon will handle all actions for the target (initial trigger, retries).
     cocoon = 1;
@@ -75,4 +75,6 @@
     luci = 2;
     // Google internally uses Flutter, and validates if tip-of-tree causes breakages.
     google_internal = 3;
+    // Special Cocoon scheduler case to trigger targets intended for beta and stable releases.
+    release = 4;
 }