-
-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: updates to issue template and gh actions
- Loading branch information
Showing
9 changed files
with
127 additions
and
64 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,49 @@ | ||
name: "\U0001F41B Bug Report" | ||
description: 'Report a bug' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for taking the time to file a bug report! Please fill out this entire form. | ||
- type: checkboxes | ||
attributes: | ||
label: I have searched open and closed issues for this issue. | ||
options: | ||
- label: I have searched open and closed issues. | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: Minimal reproducible example | ||
description: | | ||
A link to a GitHub repository containing a minimal reproducible example. This repository should include as little code as possible and not include extraneous dependencies. | ||
Try to reproduce the bugs on the provided example app. Either provide a link to the repo that reproduces the bug or provide your version of the `App.tsx` file that reproduces the issue and that we can easily use. | ||
If a reproducible example is not provided, your issue is likely to be closed. | ||
[Learn more about creating a minimal reproducible example](https://stackoverflow.com/help/mcve). | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: What platform(s) does this occur on? | ||
multiple: true | ||
options: | ||
- Android | ||
- iOS | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: | | ||
Explain the steps we need to take to reproduce the issue. Include a video or screenshots if you think it may help. | ||
Clearly describe what the expected behavior is and what instead is actually happening. Be concise and precise in your description. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
render: text | ||
label: Your computer environment | ||
description: Run the `npx react-native info` command and paste its output in the field below. | ||
validations: | ||
required: true |
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,25 @@ | ||
name: "Feature request template" | ||
description: 'Request a feature' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for taking the time to file a feature request! Please fill out this form. | ||
- type: textarea | ||
attributes: | ||
label: Feature description | ||
description: | | ||
Please describe what feature you think is missing and link to the documentation of the underlying Google's SDKs which covers the functionality. | ||
Thank you! | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: What platform(s) should this be implemented on? | ||
multiple: true | ||
options: | ||
- Android | ||
- iOS | ||
- web | ||
validations: | ||
required: true |
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,14 @@ | ||
name: "Question template" | ||
description: 'Ask a question' | ||
labels: ['question'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Please use the [GH discussions](https://github.com/react-native-google-signin/google-signin/discussions) for questions. Thank you! | ||
- type: dropdown | ||
attributes: | ||
label: I will post my question to GH discussions. | ||
options: | ||
- 'Yes' | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
name: 'Support requests' | ||
|
||
on: | ||
issues: | ||
types: [labeled, unlabeled, reopened] | ||
|
||
jobs: | ||
support: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/support-requests@v4 | ||
with: | ||
github-token: ${{ github.token }} | ||
support-label: 'repro-required' | ||
issue-comment: > | ||
:wave: @{issue-author}, sorry you're having an issue. As the issue template explains, it's required that you provide a runnable example that reproduces your issue (see the [issue template](../ISSUE_TEMPLATE/custom.yaml)). | ||
The reason is that a bug report is not actionable without a reproducer. Try to minimize the superfluous code and focus only on reproducing the bug. | ||
Please create a new issue with this and the maintainer will do his best to review it!. | ||
close-issue: true | ||
lock-issue: true | ||
- uses: dessant/support-requests@v4 | ||
with: | ||
github-token: ${{ github.token }} | ||
support-label: 'question' | ||
issue-comment: > | ||
:wave: @{issue-author}, please post your question to [discussions](https://github.com/react-native-documents/document-picker/discussions) instead. | ||
close-issue: true | ||
lock-issue: true |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# react-native-documents | ||
|
||
A set of React Native modules for document picking and viewing. | ||
React Native modules for document picking and viewing. | ||
|
||
Read the docs at https://react-native-documents.github.io/ | ||
If this is useful to you, [say thanks](https://github.com/sponsors/vonovak). Your support is greatly appreciated! | ||
|
||
If this is useful to you, consider [saying thanks](https://github.com/sponsors/vonovak). Your support is greatly appreciated!!! | ||
Read the docs at https://react-native-documents.github.io | ||
|
||
Ask questions and engage in discussions at https://github.com/react-native-documents/document-picker/discussions |
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
### Github Repository | ||
|
||
The monorepo with sources for the document picker and viewer modules is accessible to sponsors at https://github.com/react-native-documents/document-picker | ||
The monorepo with sources for the document picker and viewer modules is accessible at https://github.com/react-native-documents/document-picker |