Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkgs/repo_manage/lib/labels_update.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ final Set<String> allowList = {
'cla: yes',
'dependencies',
'Epic',
'good first issue',
'meta',
'P4',
'S0',
Expand Down
22 changes: 16 additions & 6 deletions pkgs/repo_manage/lib/src/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -148,20 +148,30 @@ class RepoInfo {

// These are monorepos, high-traffic repos, or otherwise noteable repos.
final List<String> noteableRepos = [
'dart-lang/build',
// The SLO monorepos.
'dart-lang/core',
'dart-lang/labs',
'dart-lang/tools',

// The topic monorepos.
'dart-lang/ai',
'dart-lang/build',
'dart-lang/ecosystem',
'dart-lang/ffi',
'dart-lang/http',
'dart-lang/i18n',
'dart-lang/language',
'dart-lang/native',
'dart-lang/pub',
'dart-lang/sdk',
'dart-lang/shelf',
'dart-lang/test',
'dart-lang/tools',
'dart-lang/webdev',

// Other main dart-lang repos.
'dart-lang/dartdoc',
'dart-lang/language',
'dart-lang/pub',
'dart-lang/sdk',
'dart-lang/web',

// The main flutter repo.
'flutter/flutter',
'flutter/packages',
];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/trebuchet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ This is a tool to move existing packages into monorepos.
dart run bin/trebuchet.dart \
--input-name coverage \
--input-branch-name main \
--target-branch-name main \
--input-path ~/projects/coverage/ \
--target-branch-name main \
--target tools \
--target-path ~/projects/tools/ \
--git-filter-repo ~/tools/git-filter-repo \
Expand Down
2 changes: 1 addition & 1 deletion pkgs/trebuchet/bin/trebuchet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Future<void> main(List<String> arguments) async {
)
..addOption(
'target-branch-name',
help: 'The name of the main branch on the input repo',
help: 'The name of the main branch on the target repo',
defaultsTo: 'main',
)
..addOption(
Expand Down