Skip to content

Commit 424daec

Browse files
authored
Add pull request and issue template.
2 parents e9efdd3 + f22328b commit 424daec

File tree

3 files changed

+100
-0
lines changed

3 files changed

+100
-0
lines changed
File renamed without changes.

.github/ISSUE_TEMPLATE.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!--
2+
3+
Thank you for contributing to the Firebase community!
4+
5+
Have a usage question?
6+
=======================
7+
We get lots of those and we love helping you, but GitHub is not the best place for them and they
8+
will be closed. Here are some resources to get help:
9+
10+
- Start with the quickstart: https://firebase.google.com/docs/functions/write-firebase-functions
11+
- Go through the guide: https://firebase.google.com/docs/functions/
12+
- Read the full API reference: https://firebase.google.com/docs/reference/functions/
13+
- Browse some examples: https://github.com/firebase/functions-samples
14+
15+
If the official documentation doesn't help, try asking through our official support channels:
16+
17+
https://firebase.google.com/support/
18+
19+
*Please avoid double posting across multiple channels!*
20+
21+
Think you found a bug?
22+
=======================
23+
Yeah, we're definitely not perfect! Please use the bug report template below and include a minimal
24+
repro when opening the issue.
25+
26+
27+
Have a feature request?
28+
========================
29+
Great, we love hearing how we can improve our products! Please submit your feature requests to:
30+
https://firebase.google.com/support/contact/bugs-features/. Select 'Functions' as the 'component'.
31+
32+
-->
33+
34+
35+
### Version info
36+
37+
<!-- What versions of the following libraries are you using? Note that your issue may already
38+
be fixed in the latest versions. -->
39+
40+
**firebase-functions:**
41+
42+
**firebase-tools:**
43+
44+
**firebase-admin:**
45+
46+
### Test case
47+
48+
<!-- Provide a minimal, complete, and verifiable example (http://stackoverflow.com/help/mcve) -->
49+
50+
51+
### Steps to reproduce
52+
53+
<!-- Provide the steps needed to reproduce the issue given the above test case. -->
54+
55+
56+
### Were you able to successfully deploy your functions?
57+
58+
<!-- When you ran `firebase deploy`, did you see any error messages? -->
59+
60+
61+
### Expected behavior
62+
63+
<!-- What is the expected behavior? -->
64+
65+
66+
### Actual behavior
67+
68+
<!-- Please copy and paste any error logs from https://console.firebase.google.com/project/_/functions/logs.
69+
If you're experiencing a deployment issue, please copy and paste the entirety of firebase-debug.log -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!--
2+
3+
Thank you for contributing to the Firebase community! Please fill out the pull request form below
4+
and make note of the following:
5+
6+
Run the linter and test suite
7+
==============================
8+
Run `npm test` to make sure your changes compile properly and the tests all pass on your local machine.
9+
We've hooked up this repo with continuous integration to double check those things for you.
10+
11+
Add tests (if applicable)
12+
==============================
13+
Most non-trivial changes should include some extra test coverage. If you aren't sure how to add
14+
tests, feel free to submit regardless and ask us for some advice.
15+
16+
Sign our CLA
17+
==============================
18+
Please sign our Contributor License Agreement (https://cla.developers.google.com/about/google-individual)
19+
before sending PRs. We cannot accept code without this.
20+
21+
-->
22+
23+
24+
### Description
25+
26+
<!-- Are you fixing a bug? Implementing a new feature? Make sure we have the context around your change.
27+
Link to other relevant issues or pull requests. -->
28+
29+
### Code sample
30+
31+
<!-- Proposing an API change? Provide code samples showing how the API will be used. -->

0 commit comments

Comments
 (0)