-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feat/language-identif…
…ication
- Loading branch information
Showing
247 changed files
with
16,682 additions
and
4,915 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
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,83 @@ | ||
name: 🚨 Bug report | ||
title: "bug: " | ||
description: Create a bug report to help us improve | ||
labels: ["bug/fix", "needs: triage"] | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Plugin(s) | ||
description: Select the plugins that this bug affects. | ||
options: | ||
- label: Barcode Scanning | ||
- label: Face Detection | ||
- label: Face Mesh Detection | ||
- label: Selfie Segmentation | ||
- label: Translation | ||
- type: checkboxes | ||
attributes: | ||
label: Did you test the latest version? | ||
description: | | ||
Chances are that the bug you discovered has already been fixed in a subsequent version. | ||
Therefore, before reporting an issue, make sure you are using the latest version. | ||
options: | ||
- label: I use the latest version | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Platform(s) | ||
description: Select the platforms that this bug affects. | ||
options: | ||
- label: Android | ||
- label: iOS | ||
- label: Web | ||
- type: textarea | ||
attributes: | ||
label: Current behavior | ||
description: A concise description of what you're experiencing. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Reproduction | ||
description: | | ||
Please provide a [Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example) in a public GitHub repository so that we can debug the issue. | ||
We have prepared a template repository that you can use: [capawesome-team/.capacitor-app](https://github.com/capawesome-team/.capacitor-app). | ||
placeholder: https://github.com/... | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: Steps to reproduce the behaviour using the provided example. | ||
placeholder: | | ||
1. In this environment... | ||
2. With this config... | ||
3. Run '...' | ||
4. See error... | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Other information | ||
description: List any other information that is relevant to your issue. Device information, stack traces, screenshots, related issues, etc. | ||
- type: textarea | ||
attributes: | ||
label: Capacitor doctor | ||
description: Run `npx cap doctor` in a terminal and paste the output below. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Before submitting | ||
description: | | ||
A well-written bug report allows the maintainers to quickly recreate the necessary conditions to inspect the bug and quickly find its root cause. | ||
options: | ||
- label: I understand that incomplete issues (e.g. without reproduction) are closed. | ||
required: true |
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,37 @@ | ||
name: ⚡️ Feature request | ||
title: "feat: " | ||
description: Suggest an idea for this project | ||
labels: ["feature", "needs: triage"] | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Plugin(s) | ||
description: Select the plugins that this feature request affects. | ||
options: | ||
- label: Barcode Scanning | ||
- label: Face Detection | ||
- label: Face Mesh Detection | ||
- label: Selfie Segmentation | ||
- label: Translation | ||
- type: textarea | ||
attributes: | ||
label: Current problem | ||
description: A clear and concise description of what the problem is. | ||
placeholder: I'm always frustrated when [...] | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Preferred solution | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Alternative options | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Close incomplete issues | ||
|
||
on: | ||
issues: | ||
types: | ||
- labeled | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
add-comment: | ||
runs-on: ubuntu-latest | ||
if: github.event.label.name == 'invalid' | ||
steps: | ||
- name: Close Issue | ||
uses: peter-evans/close-issue@v3 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
comment: | | ||
> I understand that incomplete issues (e.g. without reproduction) are closed. | ||
This issue is closed because not enough information was provided. |
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Add comment when issue is labeled needs-reproduction | ||
|
||
on: | ||
issues: | ||
types: | ||
- labeled | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
add-comment: | ||
runs-on: ubuntu-latest | ||
if: github.event.label.name == format('needs{0} reproduction', ':') | ||
steps: | ||
- name: Add comment | ||
uses: peter-evans/create-or-update-comment@v3 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
Please provide a [Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example) using [this template](https://github.com/capawesome-team/.capacitor-app) in a public GitHub repository so we can debug the issue. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.