Refer to "main" branches (#49)

This commit is contained in:
Natalie Weizenbaum 2021-06-29 16:14:01 -07:00 committed by GitHub
parent c919db73aa
commit b402a20757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ env:
on:
push:
branches: [master, feature.*]
branches: [main, feature.*]
tags: ['**']
pull_request:

View File

@ -12,7 +12,7 @@ import 'package:path/path.dart' as p;
///
/// Returns the path to the repository.
Future<String> cloneOrPull(String url) async =>
cloneOrCheckout(url, "origin/master");
cloneOrCheckout(url, "origin/main");
/// Ensure that the repository at [url] is cloned into the build directory and
/// pointing to [ref].