Skip to content

Commit

Permalink
project: switch to main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ubitux authored and cboesch-gpsw committed Nov 23, 2022
1 parent 3d83978 commit 305c63f
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: 'build Android 🤖'
on:
push:
branches:
- 'master'
- 'main'
pull_request:
schedule:
- cron: "0 0 * * 6" # Run every Saturday at midnight
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: 'coverage tests Linux'
on:
push:
branches:
- 'master'
- 'main'

jobs:
coverage:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: 'build iOS 🍏'
on:
push:
branches:
- 'master'
- 'main'
pull_request:
schedule:
- cron: "0 0 * * 6" # Run every Saturday at midnight
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: 'tests Linux'
on:
push:
branches:
- 'master'
- 'main'
pull_request:
schedule:
- cron: "0 0 * * 6" # Run every Saturday at midnight
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: 'tests Mac'
on:
push:
branches:
- 'master'
- 'main'
pull_request:
schedule:
- cron: "0 0 * * 6" # Run every Saturday at midnight
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: 'tests MinGW'
on:
push:
branches:
- 'master'
- 'main'
pull_request:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: 'tests MSVC'
on:
push:
branches:
- 'master'
- 'main'
pull_request:
schedule:
- cron: "0 0 * * 6" # Run every Saturday at midnight
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Linters
on:
pull_request:
branches:
- master
- main

jobs:

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Versioning](https://semver.org/spec/v2.0.0.html) for `libnodegl`.

### Changed
- The installed `nodes.specs` is now in `JSON` instead of `YAML`
- The default branch is now named `main`

## [2022.8] [libnodegl 0.6.1] - 2022-09-22
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and API can change at any time.
![tests Mac](https://github.com/gopro/gopro-lib-node.gl/workflows/tests%20Mac/badge.svg)
![tests MinGW](https://github.com/gopro/gopro-lib-node.gl/workflows/tests%20MinGW/badge.svg)
![tests MSVC](https://github.com/gopro/gopro-lib-node.gl/workflows/tests%20MSVC/badge.svg)
[![coverage](https://codecov.io/gh/gopro/gopro-lib-node.gl/branch/master/graph/badge.svg)](https://codecov.io/gh/gopro/gopro-lib-node.gl)
[![coverage](https://codecov.io/gh/gopro/gopro-lib-node.gl/branch/main/graph/badge.svg)](https://codecov.io/gh/gopro/gopro-lib-node.gl)
![build Android 🤖](https://github.com/stupeflix/sxplayer/workflows/build%20Android%20🤖/badge.svg)
![build iOS 🍏](https://github.com/stupeflix/sxplayer/workflows/build%20iOS%20🍏/badge.svg)

Expand Down
4 changes: 2 additions & 2 deletions doc/dev/ref/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ topics:
Some simple checks to greatly improve the basic functionality of your
submission:

- Make sure the build and **tests pass for every commits**: `git rebase master
- Make sure the build and **tests pass for every commits**: `git rebase main
--exec "make clean && make test"`
- Can the same changes be **applied elsewhere** in the code base?
- Avoid at all cost **glob-like code** such as `import *` or `*.ext` file
Expand Down Expand Up @@ -92,7 +92,7 @@ quality:
## Review Process

If your code passes the check list, you can submit a Pull Request for the
`master` branch on Github. Reviewers will likely make comments and request for
`main` branch on Github. Reviewers will likely make comments and request for
changes. You are expected to discuss your changes, and rework the history as
needed until it reaches a consensus.

Expand Down

0 comments on commit 305c63f

Please sign in to comment.