Skip to content

Commit 96ee861

Browse files
authored
misc repo metadata updates (#372)
1 parent 0d7ffaa commit 96ee861

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

pkgs/repo_manage/lib/labels_update.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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',

pkgs/repo_manage/lib/src/common.dart

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,20 +148,30 @@ class RepoInfo {
148148

149149
// These are monorepos, high-traffic repos, or otherwise noteable repos.
150150
final 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
];

pkgs/trebuchet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ This is a tool to move existing packages into monorepos.
88
dart 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 \

pkgs/trebuchet/bin/trebuchet.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)