errorCodes and isErrorWithCode are not correctly exported with '@react-native-documents/viewer' #3
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
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](../blob/main/.github/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 |