@@ -113,8 +113,42 @@ where contributors push changes to their personal fork and create pull requests
113
113
bring those changes into the source repository. We have more info about how to use git
114
114
when contributing to Rust under [ the git section] ( ./git.md ) .
115
115
116
+ > ** Advice for potentially large, complex, cross-cutting and/or very domain-specific changes**
117
+ >
118
+ > The compiler reviewers on rotation usually each have areas of the compiler that they know well,
119
+ > but also have areas that they are not very familiar with. If your PR contains changes that are
120
+ > large, complex, cross-cutting and/or highly domain-specific, it becomes very difficult to find a
121
+ > suitable reviewer who is comfortable in reviewing all of the changes in such a PR. This is also
122
+ > true if the changes are not only compiler-specific but also contains changes which fall under the
123
+ > purview of reviewers from other teams, like the standard library team. [ There's a bot] [ triagebot ]
124
+ > which notifies the relevant teams and pings people who have setup specific alerts based on the
125
+ > files modified.
126
+ >
127
+ > Before making such changes, you are strongly encouraged to ** discuss your proposed changes with
128
+ > the compiler team beforehand** (and with other teams that the changes would require approval
129
+ > from), and work with the compiler team to see if we can help you ** break down a large potentially
130
+ > unreviewable PR into a series of smaller more individually reviewable PRs** .
131
+ >
132
+ > You can communicate with the compiler team by creating a [ #t-compiler thread on zulip] [ t-compiler ]
133
+ > to discuss your proposed changes.
134
+ >
135
+ > Communicating with the compiler team beforehand helps in several ways:
136
+ >
137
+ > 1 . It increases the likelihood of your PRs being reviewed in a timely manner.
138
+ > - We can help you identify suitable reviewers * before* you open actual PRs, or help find
139
+ > advisors and liaisons to help you navigate the change procedures, or help with running
140
+ > try-jobs, perf runs and crater runs as suitable.
141
+ > 2 . It helps the compiler team track your changes.
142
+ > 3 . The compiler team can perform vibe checks on your changes early and often, to see if the
143
+ > direction of the changes align with what the compiler team prefers to see.
144
+ > 4 . Helps to avoid situations where you may have invested significant time and effort into large
145
+ > changes that the compiler team might not be willing to accept, or finding out very late that the
146
+ > changes are in a direction that the compiler team disagrees with.
147
+
116
148
[ about-pull-requests ] : https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests
117
149
[ development-models ] : https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models#fork-and-pull-model
150
+ [ t-compiler ] : https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler
151
+ [ triagebot ] : https://github.com/rust-lang/rust/blob/master/triagebot.toml
118
152
119
153
### r?
120
154
0 commit comments