-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
21 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ on: | |
- opened | ||
branches: | ||
- 'release**' | ||
- 'canary**' | ||
- 'main' | ||
jobs: | ||
ts-lint: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Carpe - Development flow | ||
|
||
```mermaid | ||
graph TD; | ||
K[Users report issues in GitHub Issue tracker] --> L[Code Owner assigns issues to contributors] | ||
L --> A | ||
A[Contributor forks repository in his GitHub Account] --> B[Opens PR to main in https://github.com/0LNetworkCommunity/carpe ] --> C[Automatic CI tests have to pass, Code Owner goes over the code] | ||
C --> D[Code Owner merges the PR] | ||
D --> E[Code Owner gathers multipe fixes / features] | ||
E --> F[Code Owner branches main to canary-vX.X.X branch] | ||
F --> G[CI builds and releases Canary binaries and pushes Over-The-Air updates to testers] | ||
G --> H[Testers report succesful fixes, features and new issues] | ||
G --> L | ||
H --> I[Things that passed QA gets cherrypicked from Canary v.X.X.X to release-vX.X.X branch] | ||
I --> J[Code owner releases and signs stable release binaries and pushes Over-The-Air updates] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters