Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
7ae400b26b
|
@ -0,0 +1,13 @@
|
|||
# Label name and color to set, when potential duplicates are detected
|
||||
issueLabel: potential-duplicate
|
||||
labelColor: cfd3d7
|
||||
|
||||
# If similarity is higher than this threshold, issue will be marked as duplicate
|
||||
threshold: 0.65
|
||||
|
||||
# Comment to post when potential duplicates are detected
|
||||
referenceComment: >
|
||||
Potential duplicates found:
|
||||
{{#issues}}
|
||||
- [#{{ number }}] {{ title }} ({{ accuracy }}%)
|
||||
{{/issues}}
|
|
@ -0,0 +1,25 @@
|
|||
# Configuration for reaction-comments - https://github.com/dessant/reaction-comments
|
||||
|
||||
# Issues and pull requests with these labels accept reaction comments.
|
||||
# Set to `[]` to disable
|
||||
exemptLabels: []
|
||||
|
||||
# Replace matching comments with this message, `{comment-author}` is an
|
||||
# optional placeholder. Set to `false` to disable
|
||||
reactionComment: >
|
||||
:wave: @{comment-author}, did you mean to use
|
||||
a [reaction](https://git.io/vhzhC) instead?
|
||||
|
||||
# Limit to only `issues` or `pulls`
|
||||
# only: issues
|
||||
|
||||
# Optionally, specify configuration settings just for `issues` or `pulls`
|
||||
# issues:
|
||||
# exemptLabels:
|
||||
# - party-parrot
|
||||
|
||||
# pulls:
|
||||
# reactionComment: false
|
||||
|
||||
# Repository to extend settings from
|
||||
# _extends: repo
|
|
@ -0,0 +1,21 @@
|
|||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 28
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 14
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- await-invertase-feedback
|
||||
- await-firebase-sdk-fix
|
||||
- await-google-feedback
|
||||
- await-react-native-pr
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: stale
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
Hello 👋, this issue has been automatically marked as stale because it has not had activity for quite some time.
|
||||
Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no
|
||||
further activity occurs. Thank you for your contributions.
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: >
|
||||
Closing this issue after a prolonged period of inactivity. If this is still present in the latest release, please feel free to create a new issue with up-to-date information.
|
||||
only: issues
|
|
@ -2,7 +2,7 @@
|
|||
<a href="https://rnfirebase.io">
|
||||
<img src="https://i.imgur.com/eBNJlHd.png"><br/>
|
||||
</a>
|
||||
<h2 align="center">React Native Firebase</h2>
|
||||
<h1 align="center">React Native Firebase</h2>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
|
|
|
@ -236,7 +236,7 @@ PODS:
|
|||
- React/Core
|
||||
- React/fishhook
|
||||
- React/RCTBlob
|
||||
- RNFirebase (5.0.0-rc0):
|
||||
- RNFirebase (5.0.0-rc1):
|
||||
- Firebase/Core
|
||||
- React
|
||||
- yoga (0.56.0.React)
|
||||
|
|
|
@ -19,10 +19,6 @@ module.exports = {
|
|||
getBlacklistRE() {
|
||||
return blacklist([
|
||||
new RegExp(`^${escape(resolve(__dirname, '..', 'node_modules'))}\\/.*$`),
|
||||
new RegExp(`^${escape(resolve(__dirname, '..', 'tests'))}\\/.*$`),
|
||||
new RegExp(
|
||||
`^${escape(resolve(__dirname, '..', 'tests', 'node_modules'))}\\/.*$`
|
||||
),
|
||||
]);
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue