summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yaml2
-rw-r--r--.github/workflows/tests.yaml4
-rw-r--r--CONTRIBUTING.rst4
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index d660587..5efae06 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -2,7 +2,7 @@ name: Build
on:
push:
branches:
- - master
+ - main
- '*.x'
tags:
- '*'
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index d52088f..b00a866 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -2,7 +2,7 @@ name: Tests
on:
push:
branches:
- - master
+ - main
- '*.x'
paths-ignore:
- 'docs/**'
@@ -10,7 +10,7 @@ on:
- '*.rst'
pull_request:
branches:
- - master
+ - main
- '*.x'
paths-ignore:
- 'docs/**'
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index 49f91de..c58ad8c 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -141,12 +141,12 @@ Start coding
$ git checkout -b your-branch-name origin/1.0.x
If you're submitting a feature addition or change, branch off of the
- "master" branch.
+ "main" branch.
.. code-block:: text
$ git fetch origin
- $ git checkout -b your-branch-name origin/master
+ $ git checkout -b your-branch-name origin/main
- Using your favorite editor, make your changes,
`committing as you go`_.