├── README.md └── .github └── ISSUE_TEMPLATE ├── feature_request.yml ├── bug_report.yml └── kv.yml /README.md: -------------------------------------------------------------------------------- 1 | # Deno Deploy Feedback 2 | 3 | This repo is for reporting issues with [Deno Deploy](https://deno.com/deploy). 4 | 5 | [Security & Responsible Disclosure](https://deno.com/deploy/docs/security) 6 | 7 | To contact us privately use deploy@deno.com 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: "🚀 Feature Request" 2 | description: "I have a specific suggestion for Deno Deploy!" 3 | labels: ["enhancement"] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: Thanks for taking the time to suggest a new feature! Please fill out this form as completely as possible. 8 | 9 | - type: textarea 10 | attributes: 11 | label: What problem are you trying to solve? 12 | description: | 13 | A concise description of what the problem is. 14 | placeholder: | 15 | I have an issue when [...] 16 | validations: 17 | required: true 18 | 19 | - type: textarea 20 | attributes: 21 | label: Describe the solution you'd like 22 | validations: 23 | required: true 24 | 25 | - type: textarea 26 | attributes: 27 | label: Describe alternatives you've considered 28 | validations: 29 | required: true 30 | 31 | - type: textarea 32 | attributes: 33 | label: Documentation, Adoption, Migration Strategy 34 | description: | 35 | If you can, explain how users will be able to use this and how it might be documented. Maybe a mock-up? 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: "🐛 Bug Report" 2 | description: "If something isn't working as expected with Deno Deploy 🤔." 3 | title: "[Bug]: " 4 | labels: [] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: Thanks for taking the time to file a bug report for Deno Deploy! Please fill out this form as completely as possible. 9 | 10 | - type: textarea 11 | attributes: 12 | label: Problem description 13 | description: | 14 | Please provide a detailed description of the issue you encountered with Deno Deploy. 15 | placeholder: | 16 | Describe the issue here. 17 | validations: 18 | required: true 19 | 20 | - type: textarea 21 | attributes: 22 | label: Steps to reproduce 23 | description: | 24 | Provide the steps to reproduce the issue. 25 | placeholder: | 26 | 1. Step 1 27 | 2. Step 2 28 | 3. Step 3 29 | validations: 30 | required: true 31 | 32 | - type: textarea 33 | attributes: 34 | label: Expected behavior 35 | description: A clear and concise description of what you expected to happen. 36 | placeholder: | 37 | Describe the expected behavior here. 38 | validations: 39 | required: true 40 | 41 | - type: textarea 42 | attributes: 43 | label: Environment 44 | description: | 45 | Please provide information about your environment, such as Deno version, operating system, and any other relevant details. 46 | placeholder: | 47 | - Deno version: [e.g. v1.32.3] 48 | - OS: [e.g. macOS 10.15.4, Windows 10, Browser] 49 | 50 | - type: textarea 51 | attributes: 52 | label: Possible solution 53 | description: "If you have suggestions on a fix for the bug." 54 | 55 | - type: textarea 56 | attributes: 57 | label: Additional context 58 | description: "Add any other context about the problem here. Or a screenshot if applicable." 59 | 60 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/kv.yml: -------------------------------------------------------------------------------- 1 | name: "📝 Deno KV Feedback" 2 | description: "Share your feedback, bug reports, or feature requests for Deno KV." 3 | title: "[KV Feedback]: " 4 | labels: ["kv"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: Thank you for taking the time to provide feedback on Deno KV! Please fill out this form as completely as possible. 9 | 10 | - type: checkboxes 11 | id: input1 12 | attributes: 13 | label: "🔍" 14 | options: 15 | - label: Did you search for existing issues? 16 | 17 | - type: dropdown 18 | attributes: 19 | label: Type of feedback 20 | options: 21 | - Bug report 22 | - Feature request 23 | - General feedback 24 | - Documentation improvement 25 | - Other 26 | validations: 27 | required: true 28 | 29 | - type: textarea 30 | attributes: 31 | label: Description 32 | description: | 33 | Please provide a detailed description of the issue or feedback. 34 | placeholder: | 35 | Describe your issue or feedback here. 36 | validations: 37 | required: true 38 | 39 | - type: textarea 40 | attributes: 41 | label: Steps to reproduce (if applicable) 42 | description: | 43 | If you are reporting a bug, please provide the steps to reproduce the issue. 44 | placeholder: | 45 | 1. Step 1 46 | 2. Step 2 47 | 3. Step 3 48 | 49 | - type: textarea 50 | attributes: 51 | label: Expected behavior (if applicable) 52 | description: | 53 | If you are reporting a bug or suggesting a feature, please describe the expected behavior. 54 | placeholder: | 55 | Describe the expected behavior here. 56 | 57 | - type: textarea 58 | attributes: 59 | label: Possible solution (if applicable) 60 | description: "If you have suggestions on a fix for the bug or implementation of a feature." 61 | 62 | - type: textarea 63 | attributes: 64 | label: Additional context 65 | description: "Add any other context about the issue or feedback here. Or a screenshot if applicable." 66 | 67 | --------------------------------------------------------------------------------