| OLD | NEW |
| 1 syntax = "proto2"; | 1 syntax = "proto2"; |
| 2 | 2 |
| 3 // This message describes a Commit Queue configuration. The config file cq.cfg | 3 // This message describes a Commit Queue configuration. The config file cq.cfg |
| 4 // should be stored in the config directory located on the branch that this CQ | 4 // should be stored in the config directory located on the branch that this CQ |
| 5 // should commit to. | 5 // should commit to. |
| 6 message Config { | 6 message Config { |
| 7 // Required. Version of the config format. | 7 // Required. Version of the config format. |
| 8 optional int32 version = 1; | 8 optional int32 version = 1; |
| 9 | 9 |
| 10 // Required. Name of the CQ. May only contain characters [a-zA-Z0-9_]. It is | 10 // Required. Name of the CQ. May only contain characters [a-zA-Z0-9_]. It is |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 optional string name = 1; | 152 optional string name = 1; |
| 153 | 153 |
| 154 // Builders on which tryjobs should be triggered. | 154 // Builders on which tryjobs should be triggered. |
| 155 repeated Builder builders = 2; | 155 repeated Builder builders = 2; |
| 156 } | 156 } |
| 157 | 157 |
| 158 // Buckets on which tryjobs are triggered/watched. | 158 // Buckets on which tryjobs are triggered/watched. |
| 159 repeated Bucket buckets = 1; | 159 repeated Bucket buckets = 1; |
| 160 } | 160 } |
| 161 | 161 |
| 162 message PresubmitCheckVerifier {} | 162 message PresubmitCheckVerifier { |
| 163 // After this timeout in seconds, the presubmit process will be killed. |
| 164 optional int32 timeout = 1; |
| 165 } |
| 163 } | 166 } |
| OLD | NEW |