@@ -165,23 +165,23 @@ class Trebuchet {
165
165
}
166
166
167
167
final remainingSteps = [
168
- 'Move and fix workflow files' ,
168
+ 'move and fix workflow files' ,
169
169
if (! shouldPush)
170
- 'Run `git push --set-upstream origin merge-$input -package` in the monorepo directory' ,
171
- 'Disable squash-only in GitHub settings, and merge with a fast forward merge to the main branch, enable squash-only in GitHub settings.' ,
172
- "Push tags to github using `git tag --list '$input *' | xargs git push origin`" ,
173
- 'Follow up with a PR adding links to the top-level readme table. ' ,
174
- 'Transfer issues by running `dart run pkgs/repo_manage/bin/report.dart transfer-issues --source-repo dart-lang/$input --target-repo dart-lang/$target --add-label package:$input --apply-changes`' ,
175
- "Add a commit to https://github.com/dart-lang /$input / with it's readme pointing to the monorepo." ,
176
- 'Update the auto-publishing settings on pub.dev/packages /$input .' ,
177
- 'Archive https://github.com/dart-lang/$input /. ' ,
170
+ 'run `git push --set-upstream origin merge-$input -package` in the monorepo directory' ,
171
+ "enable 'Allow merge commits' in GitHub settings; merge the PR with 'Create a merge commit'; disable 'Allow merge commits'" ,
172
+ "push tags to GitHub using `git tag --list '$input *' | xargs git push origin`" ,
173
+ 'follow up with a PR adding links to the top-level readme table' ,
174
+ 'transfer issues by running `dart run pkgs/repo_manage/bin/report.dart transfer-issues --source-repo dart-lang/$input --target-repo dart-lang/$target --add-label package:$input --apply-changes`' ,
175
+ 'update the auto-publishing settings on pub.dev/packages /$input ' ,
176
+ "add a commit to https://github.com/dart-lang /$input / with it's readme pointing to the monorepo" ,
177
+ 'archive https://github.com/dart-lang/$input /' ,
178
178
];
179
179
180
180
print ('DONE!' );
181
181
print ('''
182
182
Steps left to do:
183
183
184
- ${remainingSteps .map ((step ) => ' - $step ' ).join ('\n ' )}
184
+ ${remainingSteps .map ((step ) => '- [ ] $step ' ).join ('\n ' )}
185
185
''' );
186
186
}
187
187
0 commit comments