Skip to content

Commit fd8d0c0

Browse files
committed
chore: replace references to master branch with main
1 parent 2d01596 commit fd8d0c0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Before creating a PR, run through this checklist and mark each as complete.
1111
- [ ] I have added tests (when possible) that prove my fix is effective or that my feature works
1212
- [ ] I have checked that all unit tests pass after adding my changes
1313
- [ ] I have updated necessary documentation
14-
- [ ] I have rebased my branch onto master
14+
- [ ] I have rebased my branch onto main
1515
- [ ] I will ensure my PR is targeting the main branch and pulling from my branch from my own fork

.github/workflows/cargo-deny.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cargo-deny
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
pull_request:
77

88
jobs:

.github/workflows/nginx.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: NGINX
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88

99
env:

.github/workflows/sanitizers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: sanitizers
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88

99
env:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! * `NGX_VERSION` (default 1.28.0) - NGINX OSS version
1414
//! * `NGX_DEBUG` (default to false) - if set to true, then will compile NGINX `--with-debug` option
1515
//!
16-
//! For example, this is how you would compile the [examples](https://github.com/nginx/ngx-rust/tree/master/examples) using a specific version of NGINX and enabling
16+
//! For example, this is how you would compile the [examples](https://github.com/nginx/ngx-rust/tree/main/examples) using a specific version of NGINX and enabling
1717
//! debugging: `NGX_DEBUG=true NGX_VERSION=1.23.0 cargo build --package=examples --examples --release`
1818
//!
1919
//! To build Linux-only modules, use the "linux" feature: `cargo build --package=examples --examples --features=linux --release`

0 commit comments

Comments
 (0)