-
-
Notifications
You must be signed in to change notification settings - Fork 442
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 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,44 @@ | ||
# Configuration for Label Actions - https://github.com/dessant/label-actions | ||
|
||
# Specify actions for issues and pull requests | ||
actions: | ||
# Actions taken when the `repro-required` label is added | ||
repro-required: | ||
# Post a comment | ||
comment: > | ||
:wave: @{issue-author}, sorry you're having an issue. This issue is being closed because it does not provide all information required by the [issue template](https://raw.githubusercontent.com/react-native-datetimepicker/.github/master/.github/ISSUE_TEMPLATE/bug_report.md). | ||
As the issue template explains, we require that you provide a runnable example that reproduces your issue and your environment information. | ||
This means you need to provide a code snippet that we can copy-paste into an empty project and see the error ourselves, or provide a git repository with the issue. | ||
The reason is that maintainers do not have time to try reproduce bugs themselves. Please try to minimize the superfluous code and focus only on reproducing the bug. | ||
Please create a new issue with this and we'll be happy to review it! | ||
# Lock the thread | ||
lock: true | ||
close: true | ||
# Actions taken when the `repro-required` label is removed | ||
-repro-required: | ||
# Unlock the thread | ||
unlock: true | ||
open: true | ||
|
||
question: | ||
# Post a comment | ||
comment: > | ||
:wave: @{issue-author}, thanks for opening the issue. The issue tracker is intended for tracking bug reports and feature requests only. | ||
Seems you have a usage question. Please ask the question on [StackOverflow](https://stackoverflow.com/questions/tagged/react-native). You can also chat with other community members on [Reactiflux Discord server](https://www.reactiflux.com/). | ||
# Lock the thread | ||
lock: true | ||
close: true | ||
# Actions taken when the `repro-required` label is removed | ||
-question: | ||
# Unlock the thread | ||
unlock: true | ||
open: true | ||
# Limit to only `issues` or `pulls` | ||
# only: issues | ||
|
||
# Repository to extend settings from | ||
# _extends: repo |