Skip to content

Commit 535ce99

Browse files
authored
feat: add development checks with changeset to PR template (#33)
1 parent eb06e9d commit 535ce99

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ Describe the changes and motivations for the pull request, unless evident from t
77
### How to test
88

99
- FIXME: Add the steps describing how to verify your changes
10+
11+
### Development checks
12+
13+
- [ ] Add changeset according to [guidelines](https://github.com/toptal/davinci-github-actions/blob/master/_docs/contribution/changeset-guidelines.md) (if needed)
+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Changesets guidelines
2+
3+
The same as commits, we write changeset in `present simple`.
4+
5+
## Version bump
6+
7+
`patch`
8+
9+
- Bug fix
10+
- Change in the existing functionality
11+
- Change, which does not affect users
12+
13+
`minor`
14+
15+
- New action
16+
- New action input/output
17+
18+
`major`
19+
20+
- Deleting an action
21+
- Deleting an action's input/output
22+
- Users need to take action to use released version with the changes
23+
24+
## Summary of the change (changelog message)
25+
26+
Please use this format:
27+
28+
```
29+
---
30+
'davinci-github-actions': [version bump]
31+
---
32+
33+
---
34+
### action name 1
35+
36+
- change 1 for the action 1
37+
38+
### action name 2
39+
40+
- change 1 for the action 2
41+
- change 2 for the action 2
42+
```

0 commit comments

Comments
 (0)