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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Create a branch with a descriptive name, such as `add-search`.
49
49
50
50
We use [semantic-versioning](https://semver.org/) and the [conventional commit message format](https://www.conventionalcommits.org/en/v1.0.0/). Keep a separate feature branch for each issue you want to address. As you develop code, continue to push code to your remote feature branch.
51
51
52
-
**Important:** When modifying or adding features for a specific part of the SDK, commits and pull requests should include a scope. The scope must be either `boxsdk`or `boxsdkgen`. For general changes that don't affect a specific part (e.g., documentation updates, build configuration), the scope is optional. Examples:
52
+
**Important:** When editing the manual part of the SDK, commits and pull requests should include the `boxsdk`scope. For general changes that don't affect a specific part (e.g., documentation updates, build configuration), the scope is optional. Examples:
53
53
54
54
```
55
55
tag(scope): short description
@@ -60,15 +60,15 @@ longer description here if necessary.
60
60
61
61
Examples with scope:
62
62
-`feat(boxsdk): add new file upload feature`
63
-
-`fix(boxsdkgen): correct type definitions`
63
+
-`fix(boxsdk): correct type definitions`
64
64
-`feat(boxsdk)!: remove deprecated endpoints`
65
65
66
66
Examples without scope:
67
67
-`docs: update README`
68
68
-`chore: update build configuration`
69
69
-`ci: fix GitHub Actions workflow`
70
70
71
-
The message summary should be a one-sentence description of the change, and it must be 72 characters in length or shorter. For a list of tags, please [click here](https://github.com/commitizen/conventional-commit-types/blob/master/index.json). Note that you must include the `!` for breaking changes (e.g. `feat(boxsdk)!: removed old apis` or `feat!: breaking change` for general changes).
71
+
The message summary should be a one-sentence description of the change, and it must be 72 characters in length or shorter. For a list of tags, please [click here](https://github.com/commitizen/conventional-commit-types/blob/master/index.json). Note that you must include the `!` for breaking changes (e.g. `feat(boxsdk)!: removed old apis`for changes in manual part of the SDK or `feat!: breaking change` for general changes).
72
72
73
73
Shown below are examples of the release type that will be done based on a commit message.
74
74
@@ -90,7 +90,7 @@ In most cases, commits will be a `feat` or `fix`. Make sure to include the `!` i
0 commit comments