summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-05-11 15:52:35 -0700
committerGitHub <noreply@github.com>2021-05-11 15:52:35 -0700
commit4f54e0ea0670309e88ce717c0e4a6794f9bd7b3b (patch)
tree534e110e85d317a55cf61d12ead3c82b13e2628c
parent2656a6cab2f737dd7b543242ae5c4c5b305ffdd1 (diff)
parent986e5a48307c68a493c033c5ceeb9d6f46aa029e (diff)
downloadmarkupsafe-4f54e0ea0670309e88ce717c0e4a6794f9bd7b3b.tar.gz
Merge pull request #213 from pallets/default-branch
rename default branch in files
-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`_.