Skip to content

Commit

Permalink
Merge pull request #4 from lluis-sancho/master_update
Browse files Browse the repository at this point in the history
Master updated with upstream
  • Loading branch information
lluis-sancho authored Nov 8, 2020
2 parents 2c92518 + aa6ebd1 commit e796584
Show file tree
Hide file tree
Showing 92 changed files with 4,585 additions and 2,662 deletions.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: [Dallas62]
custom: ["https://www.buymeacoffee.com/Dallas62"]
54 changes: 54 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
name: '🐛 Bug Report'
about: Report a reproducible bug or regression in this library.
---

# Bug

<!--
Please provide a clear and concise description of what the bug is.
Include screenshots or gifs if needed.
Please test using the latest release of the library, as maybe your bug has been already fixed.
If the library has multiple install methods, describe installation method (e.g., pod, not pod, with jetifier etc).
**Please note that issues that do not follow the template may be closed.**
-->

## Environment info

<!--
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
-->

`react-native info` output:

```bash
// paste it here
```

Library version: x.x.x

## Steps To Reproduce

<!--
- You must provide a clear list of steps and code to reproduce the problem.
- 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.
- Either re-create the bug using the repository's example app or link to a GitHub repository with code that reproduces the bug.
- Explain the steps we need to take to reproduce the issue:
-->

1.
2.
...

Describe what you expected to happen:

1.
2.

## Reproducible sample code

<!--
Please add minimal runnable repro as explained above so that the bug can be tested in isolation.
Use the example project to reproduce it.
-->
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: '💡 Feature Request'
about: Submit your idea for a change in the codebase.
---

# Feature Request

<!--
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 🤗
-->

## Why it is needed

<!--
Please tell us a bit more of why you want this feature to be added, what's its origin
-->

## Possible implementation

<!--
It really helps if you could describe from a technical POV how this new feature would work, which code it rely on, etc
-->

### Code sample

<!--
Please show how the new code could work, if doable
-->
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: '🤔 Questions and Help'
about: Use this if there is something not clear about the code or its docs.
---

# Question

<!--
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.
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 🤗
Also, ideally this issue should culminate in a PR to the documentation for this library so that future developers will have that doubt cleared.
-->
17 changes: 17 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions."
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions."
days-before-stale: 365
days-before-close: 30
operations-per-run: 30
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,17 @@ local.properties
node_modules/*
npm-debug.log

yarn.lock
package-lock.json

android/android.iml
android/gradle.properties
android/gradle/
android/gradlew
android/gradlew.bat
android/src/main/gen

#Debug only
google-services.json

.vscode/
Loading

0 comments on commit e796584

Please sign in to comment.