| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 1 | # Merge Request Process |
| 2 | |
| 3 | [TOC] |
| 4 | |
| 5 | ## tl;dr |
| 6 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 7 | * Release managers (and delegates like the security team) must review all |
| 8 | merges made to release branches |
| 9 | * Merge criteria become more strict as the stable release date approaches; use |
| 10 | Chromium Dash's [Branches page](https://chromiumdash.appspot.com/branches) |
| 11 | to understand which branches are active and what merges are acceptable for |
| 12 | each branch |
| 13 | * Ensure your change is [safe to merge](#verifying-eligibility-and-safety) |
| 14 | before initiating the merge review process unless it's time-sensitive |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 15 | * Use Chromium Issue Tracker's [project queries](#monitoring-merge-requests) to |
| 16 | track your approved merges as well as your pending requests |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 17 | * Use Gerrit or git to land your merge only after it's been approved |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 18 | |
| 19 | ## Introduction |
| 20 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 21 | Chromium is a main-first development team; generally, all code should land on |
| 22 | main then roll out to stable users only after the milestone containing the code |
| 23 | is branched, stabilized and shipped to the stable channel (to learn more about |
| 24 | the release cycle, click |
| 25 | [here](https://chromium.googlesource.com/chromium/src.git/+/main/docs/process/release_cycle.md)). |
| 26 | This is because merging (also known as cherry-picking) code to an older release |
| 27 | branch introduces risk and costs time across the team. However, there are times |
| 28 | when the benefits outweigh the costs and a merge might be appropriate, e.g. to |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 29 | fix a web platform regression, address a crash or patch a security |
| 30 | vulnerability. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 31 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 32 | To ensure we make the right decisions, release managers leverage a merge review |
| 33 | process to evaluate each request. They'll ask questions about the reason you |
| 34 | would like to merge a change and the risk of the merge itself, and you'll work |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 35 | together to make a judgement call on whether or not the merge should be approved |
| 36 | or rejected. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 37 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 38 | Generally, merges follow these high-level steps: |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 39 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 40 | * Developers update bug with relevant details and request a merge by updating |
| 41 | the *Merge-Request* field with the requested milestones, then wait for |
| 42 | review. |
| 43 | * Release managers and automation review and approve, reject, or ask questions |
| 44 | about the merge within two business days. |
| 45 | * Developers wait for review and, if approved, land the merge ASAP. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 46 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 47 | For details on each step, see below. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 48 | |
| Amy Ressler | 373f7772 | 2024-02-03 00:39:47 | [diff] [blame] | 49 | **NOTE:** Because security issues (identified with *Type=Vulnerability*) follow |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 50 | a more complex flow, you may simply mark security issues as *Fixed* in the Issue |
| 51 | Tracker and [automation](#security-merge-triage) will handle the remainder of |
| 52 | the merge request process flow for you; simply process the merge if it is |
| 53 | requested and approved. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 54 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 55 | ## Requesting a merge |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 56 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 57 | ### Verifying eligibility and safety |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 58 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 59 | Before requesting a merge, first ensure your change is a good merge candidate: |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 60 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 61 | * Ensure it meets the merge criteria (via |
| 62 | [Chromium Dash](https://chromiumdash.appspot.com/branches)) of the |
| 63 | branch(es) you'd like to merge to; merge criteria become more strict the |
| 64 | older the branch is, more details on criteria |
| 65 | [below](#merge-criteria-phases) |
| 66 | * Verify merging the change to an older branch would be safe, e.g. unlikely to |
| 67 | introduce new regressions, no major merge conflicts, automated test coverage |
| 68 | present, etc; chat with your TL for input if you're not sure |
| 69 | * Confirm your change fixes the issue at hand, preferably by testing on and |
| 70 | monitoring the canary channel for 24 hours post-release (see |
| 71 | [Chromium Dash](https://chromiumdash.appspot.com/commits) to determine if |
| 72 | your change has shipped) |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 73 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 74 | * You may skip this step if a release manager or security team member has |
| 75 | told you that the merge is urgent, e.g. is actively blocking a release |
| Alex Mineer | 40d33c3 | 2018-03-15 23:45:14 | [diff] [blame] | 76 | |
| Amy Ressler | 373f7772 | 2024-02-03 00:39:47 | [diff] [blame] | 77 | ### Updating Chromium Issue Tracker |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 78 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 79 | Next, update the bug (generally the bug being fixed by the merge) with the |
| 80 | following information present and accurate: |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 81 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 82 | * Title and description clearly describing the bug being fixed |
| 83 | * Priority (*Priority*), OS (*OS*) and target milestone(s) (*Milestone*) |
| 84 | fields are set |
| Philip Rogers | 1d50df09 | 2024-07-22 13:27:28 | [diff] [blame] | 85 | * Consider all available data when setting the priority, such as existing |
| 86 | metrics for usage of a broken feature, to ensure important merges are |
| 87 | not missed. Consider collecting new data, such as by landing new metrics |
| 88 | and estimating severity with pre-stable data. For Web Platform changes, |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 89 | [compat |
| 90 | tools](https://www.chromium.org/blink/platform-predictability/compat-tools/) |
| Philip Rogers | 1d50df09 | 2024-07-22 13:27:28 | [diff] [blame] | 91 | such as |
| 92 | [UseCounters](https://www.chromium.org/blink/platform-predictability/compat-tools/#usecounter) |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 93 | , [Cluster |
| 94 | Telemetry](https://www.chromium.org/blink/platform-predictability/compat-tools/#on-demand-crawl) |
| Philip Rogers | 1d50df09 | 2024-07-22 13:27:28 | [diff] [blame] | 95 | , and |
| 96 | [HTTPArchive](https://www.chromium.org/blink/platform-predictability/compat-tools/#the-http-archive) |
| 97 | may be useful. |
| 98 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 99 | * Owner, generally the person requesting / performing the merge |
| 100 | * [Release block label](./release_blockers.md) if applicable (*ReleaseBlock* |
| 101 | field*) |
| 102 | * Issue status: |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 103 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 104 | * Fixed: You're confident the issue is fixed on main, e.g. you've locally |
| 105 | built and tested the issue, no additional crash reports are generated |
| 106 | after the fix was released, etc (most issues) |
| 107 | * In Progress (Accepted): Diagnostic merges only, e.g. to merge code to |
| 108 | track down the root cause of an issue that only exists on branch |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 109 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 110 | ### Setting the Merge-Request field |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 111 | |
| Amy Ressler | 373f7772 | 2024-02-03 00:39:47 | [diff] [blame] | 112 | Once you've verified all the above, you're ready to request a merge! Simply |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 113 | update the issue's *Merge-Request* field with the milestone(s) you'd like to |
| 114 | merge to. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 115 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 116 | ## Monitoring merge requests |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 117 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 118 | After you've updated the *Merge-Request* field, automation will evaluate your |
| 119 | request and may either approve it, reject it, or pass it along to a release |
| 120 | manager for manual evaluation; see [here](#merge-request-triage) to learn more |
| 121 | about this automation. If manual review is required, release managers strive to |
| 122 | answer all merge requests within two business days, but extenuating |
| 123 | circumstances may cause delays. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 124 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 125 | At this point, following along via bug comments sent by email will always keep |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 126 | you in the loop, but you can also use the following queries in the Issue Tracker |
| 127 | to track your merges: |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 128 | |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 129 | * [Approved and TBD merges](https://issues.chromium.org/issues?q=assignee:me%20customfield1223087:(Approved%20%7C%20TBD)): |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 130 | Merges that require your follow-up, either by landing the relevant merge (if |
| 131 | approved) or determining whether or not a merge is actually required and if |
| 132 | so, requesting it (if TBD) |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 133 | * [Requested |
| 134 | merges](https://issues.chromium.org/issues?q=assignee:me%20(-customfield1223134:none%20%7C%20customfield1223087:Review)): |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 135 | Merges that are waiting for input from release managers or automation; feel |
| 136 | free to ping bugs that sit in this queue for two business days (assuming you |
| 137 | verified that the change was already deployed to canary ahead of requesting |
| 138 | a merge) |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 139 | * [Rejected and NA merges](https://issues.chromium.org/issues?q=assignee:me%20customfield1223087:(Rejected%20%7C%20NA)): |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 140 | Merges that were either rejected by release managers, or not applicable to |
| 141 | be merged; generally, no action is needed for these items unless you |
| 142 | disagree with a merge's rejection and wish to escalate |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 143 | * [All merges](https://issues.chromium.org/issues?q=assignee:me%20(-customfield1223087:none%20%7C%20-customfield1223134:none)): |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 144 | Includes every possible merge state, useful when wanting to find an item you |
| 145 | considered for merging but can't recall the state it was last in. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 146 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 147 | For a description of each label used to track the merge process, see the |
| 148 | appendix [below](#merge-states-and-labels). |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 149 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 150 | ## Landing an approved merge |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 151 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 152 | Once your merge has been approved for a given milestone (via the release manager |
| 153 | or automation updating the *Merge* field with *Approved-###*), you have two |
| 154 | options to land the merge: |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 155 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 156 | * Gerrit UI, easiest for clean cherry-picks or those requiring only minor |
| 157 | changes |
| 158 | * git, for more complex cherry-picks and / or when local verification may be |
| 159 | beneficial |
| Alan Cutter | e338ed9 | 2021-05-06 04:57:19 | [diff] [blame] | 160 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 161 | Regardless of which method you choose, please ensure you land your cherry-pick |
| 162 | ASAP so that it can be included in the next release built from the branch; if |
| 163 | you don't merge your cherry-pick soon after approval, it will eventually be |
| 164 | rejected for merge. |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 165 | |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 166 | **NOTE:** Ensure you link to the bug that has merge approval for the relevant |
| Ben Mason | e8424ee2 | 2024-12-04 11:23:43 | [diff] [blame] | 167 | milestone (Using `Bug=<bug id>` in your commit description). Not linking to a |
| 168 | bug that has approval can cause delay to your CL landing. |
| 169 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 170 | Once the cherry-pick has landed, a bot will update the *Merge* field with |
| 171 | *Merged-###* label and remove *Approved-###* if the commit references the issue. |
| 172 | If for some reason the commit did not reference the issue, manually update the |
| 173 | *Merge* field with *Merged-### and remove *Approved-###*. |
| Ben Wagner | 96babd4c | 2022-08-26 16:53:09 | [diff] [blame] | 174 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 175 | ### Using Gerrit UI |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 176 | |
| David Benjamin | 58230aec | 2022-02-14 22:35:23 | [diff] [blame] | 177 | Select the "..." button in the Gerrit UI, then choose "Cherry Pick". When |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 178 | prompted for a branch, enter *refs/branch-heads/####*, where #### corresponds to |
| 179 | the release branch you are merging to (available on |
| mlcui | eaa3e395 | 2022-02-14 22:52:06 | [diff] [blame] | 180 | [Chromium Dash](https://chromiumdash.appspot.com/branches) in the "Chromium" |
| 181 | column). |
| Abdul Syed | e21aa1b | 2017-07-06 17:13:06 | [diff] [blame] | 182 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 183 | Once the cherry-pick CL is prepared, you can bypass code review (but not OWNERS |
| 184 | approval) within 14 days of the original change by adding the Rubber Stamper bot |
| 185 | (rubber-stamper@appspot.gserviceaccount.com) as a reviewer. If the CL meets the |
| K. Moon | 216a9a119 | 2022-08-26 06:02:36 | [diff] [blame] | 186 | [Rubber Stamper criteria](https://chromium.googlesource.com/infra/infra/+/refs/heads/main/go/src/infra/appengine/rubber-stamper/README.md), |
| 187 | the bot will vote *Bot-Commit+1* to bypass code review. If the CL is marked |
| 188 | *Auto-Submit+1*, the bot will also submit the CL to the CQ on your behalf. |
| Ian Barkley-Yeung | 3af975e | 2021-04-06 19:00:35 | [diff] [blame] | 189 | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 190 | ### Using git |
| 191 | |
| 192 | The commands below should set up your environment to be able to successfully |
| 193 | upload a cherry-pick to a release branch, where *####* corresponds to the |
| 194 | release branch you are merging to (available on |
| mlcui | eaa3e395 | 2022-02-14 22:52:06 | [diff] [blame] | 195 | [Chromium Dash](https://chromiumdash.appspot.com/branches) in the "Chromium" |
| 196 | column): |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 197 | |
| 198 | ``` |
| 199 | $ gclient sync --with_branch_heads |
| 200 | $ git fetch |
| 201 | $ git checkout -b BRANCH_NAME refs/remotes/branch-heads/#### |
| 202 | $ git cl upstream branch-heads/#### |
| 203 | $ git cherry-pick -x COMMIT_HASH_MAIN |
| Yoav Weiss | 42be043 | 2022-11-26 19:04:07 | [diff] [blame] | 204 | $ gclient sync |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 205 | ``` |
| 206 | |
| 207 | From here, your environment should be ready to adjust the change as required; |
| 208 | use ninja to build and test your changes, and when ready upload for review: |
| 209 | |
| 210 | ``` |
| 211 | $ git cl upload |
| 212 | ``` |
| 213 | |
| 214 | **Adjust the change description** to omit the "Change-Id: ..." line from |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 215 | original patch, otherwise you may experience issues when uploading the change to |
| 216 | Gerrit. Once complete, use Gerrit to initiate review and approval of the merge |
| 217 | as TBR has been discontinued. |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 218 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 219 | Other tips & tricks when merging with git via release branches: * Consider using |
| 220 | multiple working directories when creating the release branch * Editing the |
| 221 | change description to denote this is a merge (e.g. "Merge to release branch" at |
| 222 | the top) will help reviewers distinguish between the cherry-pick and the |
| 223 | original change |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 224 | |
| 225 | ## Merge automation |
| 226 | |
| Amy Ressler | 373f7772 | 2024-02-03 00:39:47 | [diff] [blame] | 227 | The Chrome team has built automation via |
| 228 | [Blintz](https://www.chromium.org/issue-tracking/autotriage), formerly known as |
| 229 | Sheriffbot, to assist in several merge flows: security merge triage, general |
| 230 | merge request triage, and preventing missed merges. |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 231 | |
| 232 | ### Security merge triage |
| 233 | |
| 234 | Given the additional complexity inherent in security merges, the security team |
| 235 | has built custom automation to handle this flow end to end; simply mark any |
| 236 | security issue as *Fixed* and Sheriffbot will evaluate applicable milestones, |
| 237 | determine if merges are required and automatically request them if need be. |
| 238 | |
| 239 | ### Merge request triage |
| 240 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 241 | To reduce release manager toil, Sheriffbot performs the first pass review of all |
| 242 | merge requests; it may auto-approve the issue if it can detect the issue meets |
| 243 | the right criteria for the current merge phase (e.g. a ReleaseBlock-Dev issue |
| 244 | requesting a merge before beta promotion), and it may auto-reject the issue |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 245 | similarly (e.g. a P3 issue requesting a merge post-stable). If it cannot |
| 246 | decide, it will pass the issue to a release manager for manual review. |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 247 | |
| 248 | Generally, Sheriffbot takes action on merge requests only after one of the two |
| 249 | conditions below are met: |
| 250 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 251 | * One or more changelists (via Gitwatcher) are present on the merge request |
| 252 | issue, and all changes have been landed for >= 24 hours |
| 253 | * No changelists are present on the merge request issue, and the merge request |
| 254 | label has been applied for >= 24 hours |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 255 | |
| 256 | These conditions help ensure any relevant changelists have had sufficient |
| 257 | runtime in our canary channel and thus are low risk for introducing a new |
| 258 | regression onto our release branch. |
| 259 | |
| 260 | ### Preventing missed merges |
| 261 | |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 262 | To avoid the situation where a critical issue is present on a release branch |
| 263 | but the fix isn't merged, Sheriffbot evaluates all release-blocking issues |
| 264 | targeting a milestone that has already branched and updates the *Merge* field |
| 265 | with *TBD-##* if the issue was marked as fixed after branch day but hasn't been |
| Amy Ressler | 373f7772 | 2024-02-03 00:39:47 | [diff] [blame] | 266 | merged. When this occurs, developers should evaluate the issue and either |
| 267 | request a merge if required (e.g. the fix did miss the release branch point) by |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 268 | updating the *Merge-Request* field, or update the *Merge* field with *NA-###* |
| 269 | (e.g. the fix is present in the release branch already or the merge is |
| Amy Ressler | 373f7772 | 2024-02-03 00:39:47 | [diff] [blame] | 270 | unnecessary for other reasons). |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 271 | |
| 272 | ## Appendix |
| 273 | |
| 274 | ### Merge criteria phases |
| 275 | |
| 276 | The table below describes the different phases that each milestone progresses |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 277 | through during its release cycle; this data is available via the Chromium Dash |
| 278 | [front-end](https://chromiumdash.appspot.com/branches) and |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 279 | [API](https://chromiumdash.appspot.com/fetch_milestones). |
| 280 | |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 281 | | Branch Phase | Period Begins | Period Ends | Acceptable Merges Include Fixes For: | |
| 282 | | --- | --- | --- | --- | |
| 283 | | beta | M(X) Branch | M(X) Stable Cut | Non-functional issues for Finch-gated features (e.g. add metrics, fix crash), noticeable new regressions, any release blockers, any security issues, emergency string issues (.GRD changes) | |
| 284 | | stable | M(X) Stable Cut | M(X+1) Stable | Urgent new regressions (especially user reports), urgent release blockers, important security issues (medium severity or higher) requested by the security team | |
| 285 | | extended (if applicable) | M(X+1) Stable | M(X+2) Stable | Important security issues (medium severity or higher) applicable to any platform supported by Chrome Browser requested by the security team | |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 286 | |
| 287 | ### Merge states and labels |
| 288 | |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 289 | The table below describes the different merge states applied via a bug's |
| 290 | metadata fields. All merge states follow the form *[State]-###*, where ### |
| Amy Ressler | 373f7772 | 2024-02-03 00:39:47 | [diff] [blame] | 291 | corresponds to the applicable milestone. If multiple merges are required, these |
| Harry Souders | 782e8b2c | 2024-02-05 06:24:50 | [diff] [blame] | 292 | labels may appear multiple times on the same bug in different states (e.g. a |
| 293 | merge request could have both *Approved-102* and *Rejected-103* at the same |
| 294 | time). |
| Alex Mineer | c5b6302 | 2021-08-26 21:36:05 | [diff] [blame] | 295 | |
| Harry Souders | 8b7e12e8 | 2025-01-13 23:03:09 | [diff] [blame^] | 296 | | Field | Value | Step Owner | Next Steps | |
| 297 | | --- | --- | --- | --- | |
| 298 | | Merge-Request | ### | Release manager | Automation will review and either approve / reject directly, or pass the review to a release manager for manual evaluation | |
| 299 | | Merge | Review-### | Release manager | Release manager will evaluate and either approve, reject, or request additional information within two business days | |
| 300 | | Merge | Approved-### | Issue owner | Issue owner should cherry-pick the fix to the appropriate release branch ASAP | |
| 301 | | Merge | Merged-### | None | N/A; merge has already been landed, no further work required for given milestone | |
| 302 | | Merge | Rejected-### | Issue owner | Issue owner should re-request a merge to escalate if they feel the merge was erroneously rejected and should be re-evaluated | |
| 303 | | Merge | TBD-### | Issue owner | Issue owner should evaluate if a merge is required, then remove *TBD-##* and replace it with *NA-##* (if no merge needed) or re-request a merge (if needed) | |
| 304 | | Merge | NA-### | None | N/A; merge is not required to the relevant milestone, no further work required for given milestone | |