forked from facebook/facebook-sdk-for-unity
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Add templates for bug report and feature request Differential Revision: D17522527 fbshipit-source-id: 32623434b02062b4cc607573c351056b872479d7
- Loading branch information
1 parent
bfe7008
commit 268d961
Showing
3 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
name: Bug Report | ||
about: Report an issue that you're running into | ||
labels: bug | ||
--- | ||
|
||
## Checklist | ||
|
||
- [ ] I've updated to the latest released version of the SDK | ||
- [ ] I've searched for existing [GitHub issues](https://github.com/facebook/facebook-sdk-for-unity/issues) | ||
- [ ] I've looked for existing answers on [Stack Overflow](https://facebook.stackoverflow.com), the [Facebook Developer Community Forum](https://developers.facebook.com/community/) and the [Facebook Developers Group](https://www.facebook.com/groups/fbdevelopers) | ||
- [ ] I've read the [Code of Conduct](CODE_OF_CONDUCT.md) | ||
- [ ] This issue is not security related and can safely be disclosed publicly on GitHub | ||
|
||
## Environment | ||
|
||
Describe your dev environment here, giving as many details as possible. If you have them, make sure to include: | ||
|
||
- Unity Editor Version: `X.X.X` | ||
- Unity SDK Version: `X.X.X` | ||
- Installation Platform & Verison: `[iOS|Android|WebGL]` version `X.X.X` | ||
|
||
## Goals | ||
|
||
What do you want to achieve? | ||
|
||
## Expected Results | ||
|
||
What do you expect to happen? | ||
|
||
## Actual Results | ||
|
||
What actually happened? Can you provide a stack trace? | ||
|
||
## Steps to Reproduce | ||
|
||
What are the steps necessary to reproduce this issue? | ||
|
||
## Code Samples & Details | ||
|
||
Please provide a code sample, as well as any additional details, to help us track down the issue. If you can provide a link to a test project that allows us to reproduce the issue, this helps us immensely in both the speed and quality of the fix. | ||
|
||
**Note:** Remember to format your code for readability: | ||
|
||
```java | ||
// INSERT YOUR CODE HERE | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Feature Request | ||
about: Tell us something you want to see in this project | ||
labels: enhancement | ||
--- | ||
|
||
## Checklist | ||
|
||
- [ ] I've updated to the latest released version of the SDK | ||
- [ ] I've searched for existing feature requests on [GitHub issues](https://github.com/facebook/facebook-sdk-for-unity/issues) | ||
- [ ] I've read the [Code of Conduct](CODE_OF_CONDUCT.md) | ||
- [ ] I've given my issue the title: `Feature Request: [name of my feature request]` | ||
|
||
## Goals | ||
|
||
What do you want to achieve? | ||
|
||
## Expected Results | ||
|
||
What do you expect to happen? | ||
|
||
## Code Samples & Details | ||
|
||
Please provide a code sample, as well as any additional details, to help us track down the issue. If you can provide a link to a test project that allows us to reproduce the issue, this helps us immensely in both the speed and quality of the fix. | ||
|
||
**Note:** Remember to format your code for readability: | ||
|
||
```swift | ||
// INSERT YOUR CODE HERE | ||
|
||
var example = "Example code" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Thanks for proposing a pull request! | ||
|
||
To help us review the request, please complete the following: | ||
|
||
- [ ] sign [contributor license agreement](https://developers.facebook.com/opensource/cla) | ||
- [ ] I've ensured that all existing tests pass and added tests (when/where necessary) | ||
- [ ] I've updated the documentation (when/where necessary) and [Changelog](CHANGELOG.md) (when/where necessary) | ||
- [ ] I've added the proper label to this pull request (e.g. `bug` for bug fixes) | ||
|
||
## Pull Request Details | ||
|
||
Describe what you accomplished in this pull request (for example, what happens before the change, and after the change) | ||
|
||
## Test Plan | ||
|
||
Test Plan: **Add your test plan here** |