Bluesky app fork with some witchin' additions 💫

revamp issue templates, add new arch template (#5532)

authored by hailey.at and committed by

GitHub 66f3068c 9ca2928a

+184 -59
-35
.github/ISSUE_TEMPLATE/bug_report.md
··· 1 - --- 2 - name: Bug report 3 - about: Create a report to help us improve 4 - title: '' 5 - labels: bug 6 - assignees: '' 7 - 8 - --- 9 - 10 - **Describe the bug** 11 - <!-- A clear and concise description of what the bug is. --> 12 - 13 - **To Reproduce** 14 - 15 - Steps to reproduce the behavior: 16 - 17 - 1. 18 - 19 - **Expected behavior** 20 - 21 - <!-- A clear and concise description of what you expected to happen. --> 22 - 23 - **Screenshots** 24 - 25 - <!-- If applicable, add screenshots to help explain your problem. --> 26 - 27 - **Details** 28 - 29 - - Platform: <!-- desktop chrome windows, mobile safari, iOS, Android --> 30 - - Platform version: 31 - - App version: 32 - 33 - **Additional context** 34 - 35 - <!-- Add any other context about the problem here. -->
+67
.github/ISSUE_TEMPLATE/bug_report.yml
··· 1 + name: "Bug Report" 2 + description: "Create a report for an issue you have experience in the app." 3 + labels: ["bug"] 4 + body: 5 + - type: markdown 6 + attributes: 7 + value: | 8 + Thanks for taking the time to report an issue you've found in the app! Before you submit this issue, please make 9 + sure you've searched for similar issues that are already open and being tracked. If you find an open issue that 10 + seems relevant to yours, it is best to leave a response there with your information instead of opening a new 11 + issue, since it helps to consolidate the info in one place. 12 + - type: textarea 13 + attributes: 14 + label: Steps to Reproduce 15 + description: | 16 + Please provide the steps that may reproduce the issue that you are experiencing. The more concise of a 17 + reproduction that you provide, the easier it will be for us to identify the issue and fix it in a timely manner. 18 + placeholder: | 19 + 1. Go to '...' 20 + 2. Click on '....' 21 + 3. Scroll down to '....' 22 + 4. See error 23 + validations: 24 + required: true 25 + - type: textarea 26 + attributes: 27 + label: Attachments 28 + description: | 29 + If possible, please provide any images or videos that may help us understand the issue you are experiencing. 30 + validations: 31 + required: false 32 + - type: dropdown 33 + attributes: 34 + label: What platform(s) does this occur on? 35 + multiple: true 36 + options: 37 + - iOS 38 + - Android 39 + - Web (Desktop) 40 + - Web (Mobile) 41 + validations: 42 + required: true 43 + - type: input 44 + attributes: 45 + label: Device Info 46 + description: | 47 + Please provide the device information that you are using when experiencing this issue. This can include the 48 + device model, operating system version, and any other relevant information. 49 + validations: 50 + required: false 51 + - type: input 52 + attributes: 53 + label: What version of the app are you using? 54 + description: | 55 + You can easily find this information by visting the Settings screen in the app, and tapping on the version info 56 + at the bottom of the screen. All the relevant information will be copied to your clipboard, and you will be 57 + able to share it here. 58 + validations: 59 + required: true 60 + - type: textarea 61 + attributes: 62 + label: Additional Information 63 + description: | 64 + Please provide any additional information that you think may be helpful in identifying the issue you are 65 + experiencing. This can include any error messages, logs, or other information that you think may be relevant. 66 + validations: 67 + required: false
+72
.github/ISSUE_TEMPLATE/bug_report_fabric.yml
··· 1 + name: "Bug Report - Fabric/New Architecture" 2 + description: "Create a bug report for builds using the New Architecture. If you are not sure what that means, don't use this template, and instead use the default bug report template." 3 + labels: ["bug", "fabric"] 4 + body: 5 + - type: checkboxes 6 + attributes: 7 + label: You're running a build that uses the React Native New Architecture, right? 8 + description: This template is specifically for issues related to builds that use the React Native New Architecture. If you are not sure what that means, this template is probably not relevant to you, and you should use the default Bug Report template. 9 + options: 10 + - label: I am running a build that uses the New Architecture 11 + required: true 12 + - type: markdown 13 + attributes: 14 + value: | 15 + Thanks for taking the time to report an issue you've found in the app! Before you submit this issue, please make 16 + sure you've searched for similar issues that are already open and being tracked. If you find an open issue that 17 + seems relevant to yours, it is best to leave a response there with your information instead of opening a new 18 + issue, since it helps to consolidate the info in one place. 19 + - type: textarea 20 + attributes: 21 + label: Steps to Reproduce 22 + description: | 23 + Please provide the steps that may reproduce the issue that you are experiencing. The more concise of a 24 + reproduction that you provide, the easier it will be for us to identify the issue and fix it in a timely manner. 25 + placeholder: | 26 + 1. Go to '...' 27 + 2. Click on '....' 28 + 3. Scroll down to '....' 29 + 4. See error 30 + validations: 31 + required: true 32 + - type: textarea 33 + attributes: 34 + label: Attachments 35 + description: | 36 + If possible, please provide any images or videos that may help us understand the issue you are experiencing. 37 + validations: 38 + required: false 39 + - type: dropdown 40 + attributes: 41 + label: What platform(s) does this occur on? 42 + multiple: true 43 + options: 44 + - iOS 45 + - Android 46 + validations: 47 + required: true 48 + - type: input 49 + attributes: 50 + label: Device Info 51 + description: | 52 + Please provide the device information that you are using when experiencing this issue. This can include the 53 + device model, operating system version, and any other relevant information. 54 + validations: 55 + required: false 56 + - type: input 57 + attributes: 58 + label: What version of the app are you using? 59 + description: | 60 + You can easily find this information by visting the Settings screen in the app, and tapping on the version info 61 + at the bottom of the screen. All the relevant information will be copied to your clipboard, and you will be 62 + able to share it here. 63 + validations: 64 + required: true 65 + - type: textarea 66 + attributes: 67 + label: Additional Information 68 + description: | 69 + Please provide any additional information that you think may be helpful in identifying the issue you are 70 + experiencing. This can include any error messages, logs, or other information that you think may be relevant. 71 + validations: 72 + required: false
-24
.github/ISSUE_TEMPLATE/feature_request.md
··· 1 - --- 2 - name: Feature request 3 - about: Suggest an idea for this project 4 - title: '' 5 - labels: feature-request 6 - assignees: '' 7 - 8 - --- 9 - 10 - **Is your feature request related to a problem? Please describe.** 11 - 12 - <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> 13 - 14 - **Describe the solution you'd like** 15 - 16 - <!-- A clear and concise description of what you want to happen. --> 17 - 18 - **Describe alternatives you've considered** 19 - 20 - <!-- A clear and concise description of any alternative solutions or features you've considered. --> 21 - 22 - **Additional context** 23 - 24 - <!-- Add any other context or screenshots about the feature request here. -->
+45
.github/ISSUE_TEMPLATE/feature_request.yml
··· 1 + name: "Bug Report" 2 + description: "Suggest an idea for the Bluesky app." 3 + labels: ["feature-request"] 4 + body: 5 + - type: markdown 6 + attributes: 7 + value: | 8 + Thanks for submitting a feature request! Before you submit this request, please make sure you've searched for 9 + similar requests that are already open and being tracked. If you find an open request that seems relevant to 10 + yours, it is best to leave a response there with your information instead of opening a new request, since it 11 + helps to consolidate the info in one place. 12 + - type: textarea 13 + attributes: 14 + label: Describe the Feature 15 + description: | 16 + Please provide a detailed description of the feature you would like to see implemented in the app. The more 17 + information you provide, the easier it will be for us to understand the feature you are requesting and to 18 + implement it in a timely manner. 19 + validations: 20 + required: true 21 + - type: textarea 22 + attributes: 23 + label: Attachments 24 + description: | 25 + If helpful, provide some images or videos of similar features in other apps that you think would be helpful 26 + for us to understand the feature you are requesting, or places within the app that you think the feature belongs 27 + in or is missing from. 28 + validations: 29 + required: false 30 + - type: textarea 31 + attributes: 32 + label: Describe Alternatives 33 + description: | 34 + If there are any alternative solutions or features that you think would be helpful to implement in place of the 35 + feature you are requesting, please provide a description of those as well. 36 + validations: 37 + required: false 38 + - type: textarea 39 + attributes: 40 + label: Additional Context 41 + description: | 42 + If there is any additional context or information that you think would be helpful for us to know about the 43 + feature you are requesting, please provide that information here. 44 + validations: 45 + required: false