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
Thank you for your interest in contributing to the Exercise Toolkit! This document provides guidelines to help you contribute effectively.
4
+
5
+
## Conventional Pull Request Titles
6
+
7
+
This project enforces [conventionalcommit](https://www.conventionalcommits.org/en/v1.0.0/) style formatting for pull request titles to automate versioning and release processes.
8
+
9
+
We do not require that every commit follows the conventionalcommits style, just the pull request title. Pull requests are squashed with the PR title as the commit message.
10
+
11
+
Each PR title must follow this format:
12
+
13
+
```
14
+
<type>(optional <scope>): <description>
15
+
```
16
+
17
+
18
+
19
+
### Examples
20
+
21
+
```
22
+
feat: add workflow to start exercise
23
+
fix(templates): correct typo in step feedback template
24
+
```
25
+
26
+
### Breaking Changes
27
+
28
+
For breaking changes, append `!` after type/scope
29
+
30
+
```
31
+
feat!: change workflow inputs
32
+
feat(templates)!: change required variables for congratulations template
0 commit comments