@@ -50,11 +50,49 @@ In another terminal window:
50
50
51
51
## Pull Requests
52
52
53
- I welcome your pull requests.
54
-
55
53
1 . Fork the repo and create your branch from ` main ` .
56
54
1 . If you've added code that should be tested, add tests.
57
55
1 . If you've changed the API, update the [ README] ( README ) with your changes.
56
+ 1 . Follow the instructions in the PR template
57
+
58
+ ## Commit Messages
59
+
60
+ Please make sure your commits follow semantic commit messaging.
61
+
62
+ Format: ` <type>(<scope>): <subject> `
63
+
64
+ ` <scope> ` is optional
65
+
66
+ ### Example
67
+
68
+ ```
69
+ feat: add hat wobble
70
+ ^--^ ^------------^
71
+ | |
72
+ | +-> Summary in present tense.
73
+ |
74
+ +-------> Type: chore, docs, feat, fix, refactor, style, or test.
75
+ ```
76
+
77
+ ### Types
78
+
79
+ - ` chore ` : Updating packages, gulp tasks, etc; no production code change.
80
+ - ` docs ` : Changes to the documentation.
81
+ - ` feat ` : New feature for the user, not a new feature for build script.
82
+ - ` fix ` : Bug fix for the user, not a fix to a build script.
83
+ - ` refactor ` : Refactoring production code, eg. renaming a variable.
84
+ - ` style ` : Formatting, missing semi colons, etc; no production code change.
85
+ - ` test ` : Adding missing tests, refactoring tests; no production code change.
86
+
87
+ ### Usage
88
+
89
+ - chore: add Oyster build script
90
+ - docs: explain hat wobble
91
+ - feat: add beta sequence
92
+ - fix: remove broken confirmation message
93
+ - refactor: share logic between 4d3d3d3 and flarhgunnstow
94
+ - style: convert tabs to spaces
95
+ - test: ensure Tayne retains clothing
58
96
59
97
## License
60
98
0 commit comments