summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2021-02-13 11:51:50 -0600
committerGitHub <noreply@github.com>2021-02-13 12:51:50 -0500
commitbdcc66012c3c5f0561f87528c0121eef74883e29 (patch)
tree22c7160e2003bb69b9b1ba07cc80726a36716986
parentd22ece077755fa375a65739965da20323c500ea7 (diff)
downloadpy-bcrypt-git-bdcc66012c3c5f0561f87528c0121eef74883e29.tar.gz
main branch rename (#247)
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--README.rst4
-rw-r--r--release.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b1dab6e..4820ede 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -3,7 +3,7 @@ on:
pull_request: {}
push:
branches:
- - master
+ - main
tags:
- '*'
diff --git a/README.rst b/README.rst
index d862d59..4453399 100644
--- a/README.rst
+++ b/README.rst
@@ -5,8 +5,8 @@ bcrypt
:target: https://pypi.org/project/bcrypt/
:alt: Latest Version
-.. image:: https://github.com/pyca/bcrypt/workflows/CI/badge.svg?branch=master
- :target: https://github.com/pyca/bcrypt/actions?query=workflow%3ACI+branch%3Amaster
+.. image:: https://github.com/pyca/bcrypt/workflows/CI/badge.svg?branch=main
+ :target: https://github.com/pyca/bcrypt/actions?query=workflow%3ACI+branch%3Amain
Good password hashing for your software and your servers
diff --git a/release.py b/release.py
index 012d92d..8c7baf0 100644
--- a/release.py
+++ b/release.py
@@ -92,7 +92,7 @@ def build_github_actions_wheels(token, version):
"Accept": "application/vnd.github.v3+json",
"Authorization": "token {}".format(token),
},
- data=json.dumps({"ref": "master", "inputs": {"version": version}}),
+ data=json.dumps({"ref": "main", "inputs": {"version": version}}),
)
response.raise_for_status()