Skip to content

Commit 18b6350

Browse files
authored
chore: Main branch name (#1015)
Changed main branch to be `main` instead of `master`. It is the new standard. After this PR we can use some tools which assume the main branch name to be `main`. ## Changes - CI config - URLs to files in GitHub repo ## Related TODO - `git branch -m master main` - `git push -u origin main` - configure main branch in GitHub settings - `git push origin --delete master`
1 parent 771347b commit 18b6350

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '*'
88
push:
99
branches:
10-
- master
10+
- main
1111

1212
jobs:
1313
lint-and-unit-test:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This is a monorepo containing various smart contracts and subgraphs used by the
22

33
## Main packages
44

5-
- [Network contracts](https://github.com/streamr-dev/network-contracts/tree/master/packages/network-contracts) The actual smart contracts used by the Streamr Network. Package exported from here has version 7.x.x and exports Typechain interfaces for Ethers v5.
6-
- [Network contracts NPM package](https://github.com/streamr-dev/network-contracts/tree/master/packages/npm-network-contracts) ABI and Typechain interfaces for the Streamr Network smart contracts for Ethers v6, plus scripts for interacting with the smart contracts.
7-
- [Network subgraphs](https://github.com/streamr-dev/network-contracts/tree/master/packages/network-subgraphs) The Graph subgraphs for many contracts in the `network-contracts` package
8-
- [config](https://github.com/streamr-dev/network-contracts/tree/master/packages/config) Addresses of deployed Streamr contracts on various chains, importable as an npm package
5+
- [Network contracts](https://github.com/streamr-dev/network-contracts/tree/main/packages/network-contracts) The actual smart contracts used by the Streamr Network. Package exported from here has version 7.x.x and exports Typechain interfaces for Ethers v5.
6+
- [Network contracts NPM package](https://github.com/streamr-dev/network-contracts/tree/main/packages/npm-network-contracts) ABI and Typechain interfaces for the Streamr Network smart contracts for Ethers v6, plus scripts for interacting with the smart contracts.
7+
- [Network subgraphs](https://github.com/streamr-dev/network-contracts/tree/main/packages/network-subgraphs) The Graph subgraphs for many contracts in the `network-contracts` package
8+
- [config](https://github.com/streamr-dev/network-contracts/tree/main/packages/config) Addresses of deployed Streamr contracts on various chains, importable as an npm package

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
"bugs": {
4141
"url": "https://github.com/streamr-dev/network-contracts/issues"
4242
},
43-
"homepage": "https://github.com/streamr-dev/network-contracts/tree/master/packages/config#readme"
43+
"homepage": "https://github.com/streamr-dev/network-contracts/tree/main/packages/config#readme"
4444
}

0 commit comments

Comments
 (0)