You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: 🎸 CONTRIBUTING, issue template, pr, prettier format
Updated text and link in CONTRIBUTING.md, updated issue template with
development workflow link, updated pr template with development workflow
mention, run prettier to fromat files
BREAKING CHANGE: 🧨 N
✅ Closes: #256
Copy file name to clipboardexpand all lines: .github/ISSUE_TEMPLATE/docs_issue.yml
+2
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@ body:
6
6
value: |
7
7
Thank you for submitting a documentation request. It helps make Berachain better.
8
8
9
+
PLEASE make sure you've read [Development Workflow](https://github.com/berachain/docs/blob/main/CONTRIBUTING.md#development-workflow) and have read and understood the [CODE OF CONDUCT](https://github.com/berachain/docs/blob/main/CODE_OF_CONDUCT.md).
10
+
9
11
If it's a small change, like misspelling or example that needs updating, feel free to submit a PR instead of creating this issue.
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+12-16
Original file line number
Diff line number
Diff line change
@@ -8,31 +8,31 @@ Berachain Foundation has adopted the [Contributor Covenant](https://www.contribu
8
8
9
9
## Open Development
10
10
11
-
All work on Berachain Docs happens directly on [GitHub](https//github.com/berachain/docs). Both core team members and external contributors send pull requests which go through the same review process.
11
+
All work on Berachain Docs happens directly on [GitHub](https://github.com/berachain/docs). Both core team members and external contributors send pull requests which go through the same review process.
12
12
13
13
## Semantic Versioning
14
14
15
15
Berachain Docs follows [semantic versioning](https://semver.org). We release patch versions for critical bugfixes, minor versions for new features or non-essential changes, and major versions for any breaking changes. When we make breaking changes, we also introduce deprecation warnings in a minor version so that our users learn about the upcoming changes and migrate their code in advance. Learn more about our commitment to stability and incremental migration in our versioning policy.
16
16
17
17
### TL;DR SemVer
18
18
19
-
**Version Bump Required**
19
+
**Typical Version Bump Scenarios**
20
20
21
21
- Changes to components `./packages/ui`
22
22
- Changes to constatns `./packages/config`
23
23
- Changes to docs structure via sidebar, theme, images, vercel configs, etc
24
24
-`./apps/*/.vitepress/*`
25
25
-`./apps/*/content/public/*`
26
26
27
-
**_NO_ Version Bump Required**
27
+
**_Minor_ Version Bump Scenario**
28
28
29
29
- Text and typo changes in markdown files (\*.md)
30
30
31
31
## Branch Organization
32
32
33
-
Submit all changes directly to the [main branch](https://github.com/berachain/docs/tree/main). We don't use separate branches for development or for upcoming releases. We do our best to keep main in good shape, with all tests passing. Please always make sure to fork the repository for external contributions.
33
+
Submit all changes as a pull request directly to the [main branch](https://github.com/berachain/docs/tree/main). We don't use separate branches for development or for upcoming releases. We do our best to keep main in good shape. Please always make sure to fork the repository for external contributions.
34
34
35
-
Code that lands in main must be compatible with the latest stable release. It may contain additional features, but no breaking changes. We should be able to release a new minor version from the tip of main at any time.
35
+
Code that lands in main must be compatible with all apps and packages. It may contain additional features, but no breaking changes. We should be able to release a new minor version from the tip of main at any time.
36
36
37
37
## Bugs / Issues
38
38
@@ -55,7 +55,7 @@ Berachain Foundation has a process for the safe disclosure of security bugs. Wit
55
55
56
56
## Proposing a Change
57
57
58
-
If you intend to change the core frontend, or make any non-trivial changes to the implementation, we recommend [filing an issue](https://github.com/berachain/docs/issues/new). This lets us reach an agreement on your proposal before you put significant effort into it.
58
+
If you intend to change the core frontend, or make any non-trivial changes to the implementation, we recommend [filing an issue](https://github.com/berachain/docs/issues/new/choose). This lets us reach an agreement on your proposal before you put significant effort into it.
59
59
60
60
If you're only fixing a bug or a typo, it's fine to submit a pull request right away but we still recommend to file an issue detailing what you're fixing. This is helpful in case we don't accept that specific fix but want to keep track of the issue.
61
61
@@ -65,7 +65,7 @@ Working on your first Pull Request? You can learn how from this free video serie
65
65
66
66
[How to Contribute to an Open Source Project on GitHub](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)
67
67
68
-
To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs that have a relatively limited scope. This is a great place to get started.
68
+
To help you get familiar with our contribution process, we have a list of good first issues that contain bugs that have a relatively limited scope. This is a great place to get started.
69
69
70
70
If you decide to fix an issue, please be sure to check the comment thread in case somebody is already working on a fix. If nobody is working on it at the moment, please leave a comment stating that you intend to work on it so other people don't accidentally duplicate your effort.
71
71
@@ -75,11 +75,7 @@ If somebody claims an issue but doesn't follow up for more than two weeks, it's
75
75
76
76
The core team is monitoring for pull requests. We will review your pull request and either merge it, request changes to it, or close it with an explanation. We'll do our best to provide updates and feedback throughout the process.
77
77
78
-
**Before submitting a pull request**, please make sure the following is done:
79
-
80
-
1. Fork [the repository](https://github.com/berachain/docs) and create your branch from main.
81
-
2. Run `pnpm` in the repository root to install dependencies.
82
-
3. Format your code with prettier (`pnpm format`) from the root.
78
+
**Before submitting a pull request**, please make sure to see [Development Workflow](#development-workflow).
83
79
84
80
## Contribution Prerequisites
85
81
@@ -131,9 +127,9 @@ pnpm -v;
131
127
If the versions are not correct or you don't have Node.js or Pnpm installed, download and follow their setup instructions:
132
128
133
129
- Install Node.js using [fnm](https://github.com/Schniz/fnm) or from the [official website](https://nodejs.org/)
134
-
- Install[Pnpm](https://pnpm.io/installation)
130
+
- Install[Pnpm](https://pnpm.io/installation)
135
131
136
-
With `nvm` or `fnm`
132
+
To install the required Node.js version use `nvm` or `fnm`:
137
133
138
134
```bash
139
135
# FROM: ./docs
@@ -152,11 +148,11 @@ This will install all dependencies in all `./apps` and `./packages` folders.
152
148
pnpm install;
153
149
```
154
150
155
-
> **NOTE:** Alternatively you if you have `node_modules` conflicts, you can run `pnpm clean` which will remove all node_modules, caching, and turbo folders, for a fresh install.
151
+
> **NOTE:** Alternatively if you have `node_modules` conflicts, you can run `pnpm clean` which will remove all node modules, caching, and turbo folders, for a fresh install.
156
152
157
153
### Running different sites
158
154
159
-
To run all sites at once, you simply run the following command.
155
+
To run all sites at once, you can simply run the following command.
0 commit comments