1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,37 @@ |
1 |
+<!-- Kamailio Pull Request Template --> |
|
2 |
+ |
|
3 |
+<!-- |
|
4 |
+IMPORTANT: |
|
5 |
+ - for detailed contributing guidelines, read: |
|
6 |
+ https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md |
|
7 |
+ - pull requests must be done to master branch, unless they are backports |
|
8 |
+ of fixes from master branch to a stable branch |
|
9 |
+ - backports to stable branches must be done with 'git cherry-pick -x ...' |
|
10 |
+ - code is contributed under BSD for core and main components (tm, sl, auth, tls) |
|
11 |
+ - code is contributed GPLv2 or a compatible license for the other components |
|
12 |
+ - GPL code is contributed with OpenSSL licensing exception |
|
13 |
+--> |
|
14 |
+ |
|
15 |
+#### Pre-Submission Checklist |
|
16 |
+<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply --> |
|
17 |
+<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above--> |
|
18 |
+<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list --> |
|
19 |
+- [ ] Commit message has the format required by CONTRIBUTING guide |
|
20 |
+- [ ] Commits are split per component (core, individual modules, libs, utils, ...) |
|
21 |
+- [ ] Each component has a single commit (if not, squash them into one commit) |
|
22 |
+- [ ] No commits to README files for modules (changes must be done to docbook files |
|
23 |
+in `doc/` subfolder, the README file is autogenerated) |
|
24 |
+ |
|
25 |
+#### Type Of Change |
|
26 |
+- [ ] Small bug fix (non-breaking change which fixes an issue) |
|
27 |
+- [ ] New feature (non-breaking change which adds new functionality) |
|
28 |
+- [ ] Breaking change (fix or feature that would change existing functionality) |
|
29 |
+ |
|
30 |
+#### Checklist: |
|
31 |
+<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply --> |
|
32 |
+- [ ] PR should be backported to stable branches |
|
33 |
+- [ ] Tested changes locally |
|
34 |
+- [ ] Related to issue #XXXX (replace XXXX with an open issue number) |
|
35 |
+ |
|
36 |
+#### Description |
|
37 |
+<!-- Describe your changes in detail --> |