summaryrefslogtreecommitdiff
path: root/tools/ci
diff options
context:
space:
mode:
authorStefan van der Walt <stefanv@berkeley.edu>2021-03-04 07:11:41 -0800
committerGitHub <noreply@github.com>2021-03-04 09:11:41 -0600
commit954605ec08ad833899ffb956395f2d70f8eea2df (patch)
treea728df2ab2d8c29e8a36e98cd4a97581e87460ea /tools/ci
parent7134dcfe5f43146ffd1ba8d9c58504ec7146ea3f (diff)
downloadnumpy-954605ec08ad833899ffb956395f2d70f8eea2df.tar.gz
MAINT: Update master to main after branch rename (gh-18544)
* Upload docs to main branch of neps/devdocs * Update `master` to `main` to be consistent with current state of renaming * Remove badges from README * Replace remaining instances of `master` with `main` * Add back logo * Fix CircleCI branch checks * Fix GA branch name * master->main in issue templates. * master->main for 2 links to numpy archive. * Change master to main in NEP 23 Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
Diffstat (limited to 'tools/ci')
-rwxr-xr-xtools/ci/push_docs_to_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci/push_docs_to_repo.py b/tools/ci/push_docs_to_repo.py
index ae5305484..939a09c58 100755
--- a/tools/ci/push_docs_to_repo.py
+++ b/tools/ci/push_docs_to_repo.py
@@ -56,7 +56,7 @@ run(['git', 'commit', '--allow-empty', '-m', args.message], stdout=False)
print('- uploading as %s <%s>' % (args.committer, args.email))
if args.force:
- run(['git', 'push', 'origin', 'master', '--force'])
+ run(['git', 'push', 'origin', 'main', '--force'])
else:
print('\n!! No `--force` argument specified; aborting')
print('!! Before enabling that flag, make sure you know what it does\n')