This repository was archived by the owner on Sep 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 66if [ " $2 " == " " ]; then
77 echo call as " $0 " " <src>" " <target branch>"
88 echo where src is the root of the built documentation git checkout and
9- echo branch should be " master " or " 1.7" or so
9+ echo branch should be " main " or " 1.7" or so
1010 exit 1
1111fi
1212
@@ -20,7 +20,7 @@ git checkout gh-pages
2020mkdir -p ./" ${target} "
2121rm -rf ./" ${target} " /*
2222cp -r " ${src} /docs/build/html/" * ./" $target "
23- if [ " ${target} " == " master " ]; then
23+ if [ " ${target} " == " main " ]; then
2424 mkdir -p ./_static
2525 rm -rf ./_static/*
2626 cp -r " ${src} /docs/build/html/_static/" * ./_static
Original file line number Diff line number Diff line change @@ -587,7 +587,7 @@ jobs:
587587 # https://circleci.com/docs/2.0/configuration-reference/#checkout
588588 set -ex
589589 tag=${CIRCLE_TAG:1:5}
590- target=${tag:-master }
590+ target=${tag:-main }
591591 ~/workspace/.circleci/build_docs/commit_docs.sh ~/workspace $target
592592
593593 docstring_parameters_sync :
@@ -1371,7 +1371,7 @@ workflows:
13711371 filters :
13721372 branches :
13731373 only :
1374- - master
1374+ - main
13751375 jobs :
13761376 - smoke_test_docker_image_build :
13771377 context : org-member
Original file line number Diff line number Diff line change @@ -587,7 +587,7 @@ jobs:
587587 # https://circleci.com/docs/2.0/configuration-reference/#checkout
588588 set -ex
589589 tag=${CIRCLE_TAG:1:5}
590- target=${tag:-master }
590+ target=${tag:-main }
591591 ~/workspace/.circleci/build_docs/commit_docs.sh ~/workspace $target
592592
593593 docstring_parameters_sync:
@@ -630,7 +630,7 @@ workflows:
630630 filters:
631631 branches:
632632 only:
633- - master
633+ - main
634634 jobs:
635635 - smoke_test_docker_image_build:
636636 context: org-member
Original file line number Diff line number Diff line change 2222printf " \x1b[34mRunning clang-format: "
2323./clang-format --version
2424printf " \x1b[0m\n"
25- git-clang-format --binary ./clang-format origin/master
25+ git-clang-format --binary ./clang-format origin/main
2626git diff --exit-code
2727status=$?
2828exit_status=" $(( exit_status+ status)) "
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: Bandit
44
55on :
66 pull_request :
7- branches : [ master ]
7+ branches : [ main ]
88
99 workflow_dispatch :
1010
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: CodeQL
44
55on :
66 pull_request :
7- branches : [ master ]
7+ branches : [ main ]
88
99 workflow_dispatch :
1010
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ possible.
55## Pull Requests
66We actively welcome your pull requests.
77
8- 1 . Fork the repo and create your branch from ` master ` .
8+ 1 . Fork the repo and create your branch from ` main ` .
992 . If you've added code that should be tested, add tests.
10103 . If you've changed APIs, update the documentation.
11114 . Ensure the test suite passes.
@@ -28,4 +28,4 @@ outlined on that page and do not file a public issue.
2828
2929## License
3030By contributing to text, you agree that your contributions will be licensed
31- under the LICENSE file in the root directory of this source tree.
31+ under the LICENSE file in the root directory of this source tree.
You can’t perform that action at this time.
0 commit comments