| OLD | NEW |
| 1 Commit Queue Keywords | 1 Commit Queue Keywords |
| 2 ===================== | 2 ===================== |
| 3 | 3 |
| 4 COMMIT | 4 COMMIT |
| 5 ------ | 5 ------ |
| 6 | 6 |
| 7 If you are working on experimental code and do not want to risk accidentally | 7 If you are working on experimental code and do not want to risk accidentally |
| 8 submitting the change via the CQ, then you can mark it with "COMMIT=false". | 8 submitting the change via the CQ, then you can mark it with "COMMIT=false". |
| 9 The CQ will immediately abandon the change if it contains this option. | 9 The CQ will immediately abandon the change if it contains this option. |
| 10 To do a dry run through the CQ please use Rietveld's [dry run](https://groups.go
ogle.com/a/chromium.org/forum/#!topic/chromium-dev/G5-X0_tfmok) feature. | 10 To do a dry run through the CQ please use Rietveld's [dry run](https://groups.go
ogle.com/a/chromium.org/forum/#!topic/chromium-dev/G5-X0_tfmok) feature. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 NOPRESUBMIT=true | 89 NOPRESUBMIT=true |
| 90 | 90 |
| 91 NOTRY | 91 NOTRY |
| 92 ----- | 92 ----- |
| 93 | 93 |
| 94 If you cannot wait for the try job results, you can add the following line to th
e CL description: | 94 If you cannot wait for the try job results, you can add the following line to th
e CL description: |
| 95 | 95 |
| 96 NOTRY=true | 96 NOTRY=true |
| 97 | 97 |
| 98 The CQ will then not run any try jobs for your change and will commit the CL as
soon as the tree is open, assuming the presubmit check passes. | 98 The CQ will then not run any try jobs for your change and will commit the CL as
soon as the tree is open, assuming the presubmit check passes. |
| 99 |
| 100 NO_MERGE_BUILDS |
| 101 --------------- |
| 102 |
| 103 This keyword prevents the Skia build masters from building this commit with othe
rs. Use it when your |
| 104 commit may have effects that you don't want mis-attributed to other commits. Jus
t include the keyword |
| 105 somewhere in the commit message: |
| 106 |
| 107 NO_MERGE_BUILDS |
| OLD | NEW |