Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit b40f9b5

Browse files
committed
Add GitHub configuration.
1 parent 028bc16 commit b40f9b5

File tree

4 files changed

+111
-0
lines changed

4 files changed

+111
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
name: '🐛 Bug Report'
3+
about: Report a reproducible bug or regression in this library.
4+
---
5+
6+
# Bug
7+
8+
<!--
9+
Please provide a clear and concise description of what the bug is.
10+
Include screenshots or gifs if needed.
11+
Please test using the latest release of the library, as maybe your bug has been already fixed.
12+
If the library has multiple install methods, describe installation method (e.g., pod, not pod, with jetifier etc).
13+
14+
**Please note that issues that do not follow the template may be closed.**
15+
-->
16+
17+
## Environment info
18+
19+
<!--
20+
Run `react-native info` in your terminal and paste the results here. Also, include the *precise* version number of this library that you are using in the project
21+
-->
22+
23+
`react-native info` output:
24+
25+
```bash
26+
// paste it here
27+
```
28+
29+
Library version: x.x.x
30+
31+
## Steps To Reproduce
32+
33+
<!--
34+
- You must provide a clear list of steps and code to reproduce the problem.
35+
- Keep the code reproducing the bug as simple as possible, with the minimum amount of code required to reproduce the issue. See https://stackoverflow.com/help/mcve.
36+
- Either re-create the bug using the repository's example app or link to a GitHub repository with code that reproduces the bug.
37+
- Explain the steps we need to take to reproduce the issue:
38+
-->
39+
40+
1.
41+
2.
42+
...
43+
44+
Describe what you expected to happen:
45+
46+
1.
47+
2.
48+
49+
## Reproducible sample code
50+
51+
<!--
52+
Please add minimal runnable repro as explained above so that the bug can be tested in isolation.
53+
-->
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: '💡 Feature Request'
3+
about: Submit your idea for a change in the codebase.
4+
---
5+
6+
# Feature Request
7+
8+
<!--
9+
This issue should serve for you to present or pitch an idea to the maintainers - but remember that it would be better if you were to submit a PR instead 🤗
10+
-->
11+
12+
## Why it is needed
13+
14+
<!--
15+
Please tell us a bit more of why you want this feature to be added, what's its origin
16+
-->
17+
18+
## Possible implementation
19+
20+
<!--
21+
It really helps if you could describe from a technical POV how this new feature would work, which code it rely on, etc
22+
-->
23+
24+
### Code sample
25+
26+
<!--
27+
Please show how the new code could work, if doable
28+
-->

.github/ISSUE_TEMPLATE/question.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: '🤔 Questions and Help'
3+
about: Use this if there is something not clear about the code or its docs.
4+
---
5+
6+
# Question
7+
8+
<!--
9+
Before submitting it, please ensure that this was not already asked in another issue, or on StackOverflow. Ideally, you should always refer to StackOverflow first.
10+
11+
This issue should serve for you to ask a question about the library to the maintainers and other fellow developers - remember that even if the issue gets closed, the conversation can move forward 🤗
12+
Also, ideally this issue should culminate in a PR to the documentation for this library so that future developers will have that doubt cleared.
13+
-->

.github/stale.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 730
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 30
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
# Label to use when marking an issue as stale
10+
staleLabel: wontfix
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: false

0 commit comments

Comments
 (0)