Skip to content

Commit 721cfd2

Browse files
authored
Create github templates. (firebase#20)
* Create PULL_REQUEST_TEMPLATE.md * Create ISSUE_TEMPLATE.md
1 parent 2e1bb13 commit 721cfd2

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

Diff for: ISSUE_TEMPLATE.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
### [READ] Step 1: Are you in the right place?
2+
3+
* For issues or feature requests related to __the code in this repository__
4+
file a Github issue.
5+
* If this is a __feature request__ make sure the issue title starts with "FR:".
6+
* For general technical questions, post a question on [StackOverflow](http://stackoverflow.com/)
7+
with the firebase tag.
8+
* For general Firebase discussion, use the [firebase-talk](https://groups.google.com/forum/#!forum/firebase-talk)
9+
google group.
10+
* For help troubleshooting your application that does not fall under one
11+
of the above categories, reach out to the personalized
12+
[Firebase support channel](https://firebase.google.com/support/).
13+
14+
### [REQUIRED] Step 2: Describe your environment
15+
16+
* Operating System version: _____
17+
* Firebase SDK version: _____
18+
* Library version: _____
19+
* Firebase Product: _____ (auth, database, storage, etc)
20+
21+
### [REQUIRED] Step 3: Describe the problem
22+
23+
#### Steps to reproduce:
24+
25+
What happened? How can we make the problem occur?
26+
This could be a description, log/console output, etc.
27+
28+
#### Relevant Code:
29+
30+
```
31+
// TODO(you): code here to reproduce the problem
32+
```

Diff for: PULL_REQUEST_TEMPLATE.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Hey there! So you want to contribute to a Firebase SDK?
2+
Before you file this pull request, please read these guidelines:
3+
4+
### Discussion
5+
6+
* Read the contribution guidelines (CONTRIBUTING.md).
7+
* If this has been discussed in an issue, make sure to link to the issue here.
8+
If not, go file an issue about this **before creating a pull request** to discuss.
9+
10+
### Testing
11+
12+
* Make sure all existing tests in the repository pass after your change.
13+
* If you fixed a bug or added a feature, add a new test to cover your code.
14+
15+
### API Changes
16+
17+
* At this time we cannot accept changes that affect the public API. If you'd like to help
18+
us make Firebase APIs better, please propose your change in an issue so that we
19+
can discuss it together.

0 commit comments

Comments
 (0)