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
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,37 @@ Revisions of this nature will result in a 0.X.X change of the version number.
25
25
26
26
All the code of the current repository is being generated automatically by the [SDK generator](https://github.com/microsoftgraph/MSGraph-SDK-Code-Generator/) in which any change must be reflected.
27
27
28
+
## Commit message format
29
+
30
+
To support our automated release process, pull requests are required to follow the [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/)
31
+
format.
32
+
33
+
Each commit message consists of a **header**, an optional **body** and an optional **footer**. The header is the first line of the commit and
34
+
MUST have a **type** (see below for a list of types) and a **description**. An optional **scope** can be added to the header to give extra context.
35
+
36
+
```
37
+
<type>[optional scope]: <short description>
38
+
<BLANK LINE>
39
+
<optional body>
40
+
<BLANK LINE>
41
+
<optional footer(s)>
42
+
```
43
+
44
+
The recommended commit types used are:
45
+
46
+
-**feat** for feature updates (increments the _minor_ version)
47
+
-**fix** for bug fixes (increments the _patch_ version)
48
+
-**perf** for performance related changes e.g. optimizing an algorithm
49
+
-**refactor** for code refactoring changes
50
+
-**test** for test suite updates e.g. adding a test or fixing a test
51
+
-**style** for changes that don't affect the meaning of code. e.g. formatting changes
52
+
-**docs** for documentation updates e.g. ReadMe update or code documentation updates
53
+
-**build** for build system changes (gradle updates, external dependency updates)
54
+
-**ci** for CI configuration file changes e.g. updating a pipeline
55
+
-**chore** for miscallaneous non-sdk changesin the repo e.g. removing an unused file
56
+
57
+
Adding a footer with the prefix **BREAKING CHANGE:** will cause an increment of the _major_ version.
58
+
28
59
## Add yourself as a contributor
29
60
30
61
This project follows the [all contributors](https://github.com/kentcdodds/all-contributors) specification. When making a contribution, please add yourself to the table of contributors:
0 commit comments