Skip to content

Commit 40e6f93

Browse files
committed
Change main branch from master to main
1 parent 5124a40 commit 40e6f93

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: CI
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
branches:
9-
- master
9+
- main
1010
schedule:
1111
- cron: '0 2 * * *'
1212

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# graphql_client
22

3-
[![Github actions Status](https://github.com/graphql-rust/graphql-client/workflows/CI/badge.svg?branch=master&event=push)](https://github.com/graphql-rust/graphql-client/actions)
3+
[![Github actions Status](https://github.com/graphql-rust/graphql-client/workflows/CI/badge.svg?branch=main&event=push)](https://github.com/graphql-rust/graphql-client/actions)
44
[![docs](https://docs.rs/graphql_client/badge.svg)](https://docs.rs/graphql_client/latest/graphql_client/)
55
[![crates.io](https://img.shields.io/crates/v/graphql_client.svg)](https://crates.io/crates/graphql_client)
66

@@ -28,7 +28,7 @@ A typed GraphQL client library for Rust.
2828

2929
- In order to provide precise types for a response, graphql_client needs to read the query and the schema at compile-time.
3030

31-
To download the schema, you have multiple options. This projects provides a [CLI](https://github.com/graphql-rust/graphql-client/tree/master/graphql_client_cli), however it does not matter what tool you use, the resulting `schema.json` is the same.
31+
To download the schema, you have multiple options. This projects provides a [CLI](https://github.com/graphql-rust/graphql-client/tree/main/graphql_client_cli), however it does not matter what tool you use, the resulting `schema.json` is the same.
3232

3333
- We now have everything we need to derive Rust types for our query. This is achieved through a procedural macro, as in the following snippet:
3434

@@ -81,7 +81,7 @@ A typed GraphQL client library for Rust.
8181
}
8282
```
8383

84-
[A complete example using the GitHub GraphQL API is available](https://github.com/graphql-rust/graphql-client/tree/master/examples/github), as well as sample [rustdoc output](https://www.tomhoule.com/docs/example_module/).
84+
[A complete example using the GitHub GraphQL API is available](https://github.com/graphql-rust/graphql-client/tree/main/examples/github), as well as sample [rustdoc output](https://www.tomhoule.com/docs/example_module/).
8585

8686
## Alternative workflow using the CLI
8787

@@ -167,7 +167,7 @@ There is an [`include`](https://doc.rust-lang.org/cargo/reference/manifest.html#
167167

168168
## Examples
169169

170-
See the [examples directory](https://github.com/graphql-rust/graphql-client/tree/master/examples) in this repository.
170+
See the [examples directory](https://github.com/graphql-rust/graphql-client/tree/main/examples) in this repository.
171171

172172
## Contributors
173173

@@ -189,7 +189,7 @@ Warmest thanks to all those who contributed in any way (not only code) to this p
189189
## Code of conduct
190190

191191
Anyone who interacts with this project in any space, including but not limited to
192-
this GitHub repository, must follow our [code of conduct](https://github.com/graphql-rust/graphql-client/blob/master/CODE_OF_CONDUCT.md).
192+
this GitHub repository, must follow our [code of conduct](https://github.com/graphql-rust/graphql-client/blob/main/CODE_OF_CONDUCT.md).
193193

194194
## License
195195

0 commit comments

Comments
 (0)