File tree Expand file tree Collapse file tree 4 files changed +19
-8
lines changed Expand file tree Collapse file tree 4 files changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ final Set<String> allowList = {
6060 'cla: yes' ,
6161 'dependencies' ,
6262 'Epic' ,
63+ 'good first issue' ,
6364 'meta' ,
6465 'P4' ,
6566 'S0' ,
Original file line number Diff line number Diff line change @@ -148,20 +148,30 @@ class RepoInfo {
148148
149149// These are monorepos, high-traffic repos, or otherwise noteable repos.
150150final List <String > noteableRepos = [
151- 'dart-lang/build' ,
151+ // The SLO monorepos.
152152 'dart-lang/core' ,
153+ 'dart-lang/labs' ,
154+ 'dart-lang/tools' ,
155+
156+ // The topic monorepos.
157+ 'dart-lang/ai' ,
158+ 'dart-lang/build' ,
153159 'dart-lang/ecosystem' ,
154- 'dart-lang/ffi' ,
155160 'dart-lang/http' ,
156161 'dart-lang/i18n' ,
157- 'dart-lang/language' ,
158162 'dart-lang/native' ,
159- 'dart-lang/pub' ,
160- 'dart-lang/sdk' ,
161163 'dart-lang/shelf' ,
162164 'dart-lang/test' ,
163- 'dart-lang/tools' ,
164165 'dart-lang/webdev' ,
166+
167+ // Other main dart-lang repos.
168+ 'dart-lang/dartdoc' ,
169+ 'dart-lang/language' ,
170+ 'dart-lang/pub' ,
171+ 'dart-lang/sdk' ,
172+ 'dart-lang/web' ,
173+
174+ // The main flutter repo.
165175 'flutter/flutter' ,
166176 'flutter/packages' ,
167177];
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ This is a tool to move existing packages into monorepos.
88dart run bin/trebuchet.dart \
99 --input-name coverage \
1010 --input-branch-name main \
11- --target-branch-name main \
1211 --input-path ~ /projects/coverage/ \
12+ --target-branch-name main \
1313 --target tools \
1414 --target-path ~ /projects/tools/ \
1515 --git-filter-repo ~ /tools/git-filter-repo \
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Future<void> main(List<String> arguments) async {
3535 )
3636 ..addOption (
3737 'target-branch-name' ,
38- help: 'The name of the main branch on the input repo' ,
38+ help: 'The name of the main branch on the target repo' ,
3939 defaultsTo: 'main' ,
4040 )
4141 ..addOption (
You can’t perform that action at this time.
0 commit comments