Skip to content

Commit 22bc0a9

Browse files
committed
chore(docs): Added contribution templates, SECURITY policy
1 parent 4f4e490 commit 22bc0a9

File tree

5 files changed

+131
-1
lines changed

5 files changed

+131
-1
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
name: Bug report
3+
about: Report a bug encountered while using ERPNext
4+
labels: bug
5+
---
6+
7+
<!--
8+
Welcome to ERPNext issue tracker! Before creating an issue, please heed the following:
9+
10+
1. This tracker should only be used to report bugs and request features / enhancements to ERPNext
11+
- For questions and general support, checkout the manual https://erpnext.com/docs/user/manual/en or use https://discuss.erpnext.com
12+
- For documentation issues, refer to https://github.com/frappe/erpnext_com
13+
2. Use the search function before creating a new issue. Duplicates will be closed and directed to
14+
the original discussion.
15+
3. When making a bug report, make sure you provide all required information. The easier it is for
16+
maintainers to reproduce, the faster it'll be fixed.
17+
4. If you think you know what the reason for the bug is, share it with us. Maybe put in a PR 😉
18+
-->
19+
20+
## Description of the issue
21+
22+
## Context information (for bug reports)
23+
24+
**Output of `bench version`**
25+
```
26+
(paste here)
27+
```
28+
29+
## Steps to reproduce the issue
30+
31+
1.
32+
2.
33+
3.
34+
35+
### Observed result
36+
37+
### Expected result
38+
39+
### Stacktrace / full error message
40+
41+
```
42+
(paste here)
43+
```
44+
45+
## Additional information
46+
47+
OS version / distribution, `ERPNext` install method, etc.
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea to improve ERPNext
4+
labels: feature-request
5+
---
6+
7+
<!--
8+
Welcome to ERPNext issue tracker! Before creating an issue, please heed the following:
9+
10+
1. This tracker should only be used to report bugs and request features / enhancements to ERPNext
11+
- For questions and general support, checkout the manual https://erpnext.com/docs/user/manual/en or use https://discuss.erpnext.com
12+
- For documentation issues, refer to https://github.com/frappe/erpnext_com
13+
2. Use the search function before creating a new issue. Duplicates will be closed and directed to
14+
the original discussion.
15+
3. When making a feature request, make sure to be as verbose as possible. The better you convey your message, the greater the drive to make it happen.
16+
-->
17+
18+
**Is your feature request related to a problem? Please describe.**
19+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
20+
21+
**Describe the solution you'd like**
22+
A clear and concise description of what you want to happen.
23+
24+
**Describe alternatives you've considered**
25+
A clear and concise description of any alternative solutions or features you've considered.
26+
27+
**Additional context**
28+
Add any other context or screenshots about the feature request here.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Question about using ERPNext
3+
about: This is not the appropriate channel
4+
labels: invalid
5+
---
6+
7+
Please post on our forums:
8+
9+
for questions about using `ERPNext`: https://discuss.erpnext.com
10+
11+
for questions about using the `Frappe Framework`: https://discuss.frappe.io
12+
13+
for questions about using `bench`, probably the best place to start is the [bench repo](https://github.com/frappe/bench)
14+
15+
For documentation issues, use the [ERPNext Documentation](https://erpnext.com/docs/) or [Frappe Framework Documentation](https://frappe.io/docs/user/en) or the [developer cheetsheet](https://github.com/frappe/frappe/wiki/Developer-Cheatsheet)
16+
17+
> **Posts that are not bug reports or feature requests will not be addressed on this issue tracker.**

.github/PULL_REQUEST_TEMPLATE.md

+32-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,33 @@
1-
Please read the pull request checklist to make sure your changes are merged: https://github.com/frappe/erpnext/wiki/Pull-Request-Checklist
1+
<!--
22
3+
Some key notes before you open a PR:
4+
5+
1. Select which branch should this PR be merged in?
6+
2. PR name follows [convention](http://karma-runner.github.io/4.0/dev/git-commit-msg.html)
7+
3. All tests pass locally, UI and Unit tests
8+
4. All business logic and validations must be on the server-side
9+
5. Update necessary Documentation
10+
6. Put `closes #XXXX` in your comment to auto-close the issue that your PR fixes
11+
12+
13+
Also, if you're new here
14+
15+
- Documentation Guidelines => https://github.com/frappe/erpnext/wiki/Updating-Documentation
16+
17+
- Contribution Guide => https://github.com/frappe/frappe/blob/develop/.github/CONTRIBUTING.md
18+
19+
- Pull Request Checklist => https://github.com/frappe/erpnext/wiki/Pull-Request-Checklist
20+
21+
-->
22+
23+
> Please provide enough information so that others can review your pull request:
24+
25+
<!-- You can skip this if you're fixing a typo or updating existing documentation -->
26+
27+
> Explain the **details** for making this change. What existing problem does the pull request solve?
28+
29+
<!-- Example: When "Adding a function to do X", explain why it is necessary to have a way to do X. -->
30+
31+
> Screenshots/GIFs
32+
33+
<!-- Add images/recordings to better visualize the change: expected/current behviour -->

SECURITY.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Security Policy
2+
3+
The ERPNext team and community take security issues seriously. To report a security issue, fill out the form at [https://erpnext.com/security/report](https://erpnext.com/security/report).
4+
5+
You can help us make ERPNext and all it's users more secure by following the [Reporting guidelines](https://erpnext.com/security).
6+
7+
We appreciate your efforts to responsibly disclose your findings. We'll endeavor to respond quickly, and will keep you updated throughout the process.

0 commit comments

Comments
 (0)