Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 68 lines 2.2 kB view raw
1name: "🐛 Bug Report" 2description: Report a bug for OpenStatus. 3labels: 4 - "needs-triage" 5 - "bug" 6body: 7 - type: markdown 8 attributes: 9 value: | 10 ## Welcome 👋🏻 11 12 Thank you for taking the time to report an issue with OpenStatus. Please fill out the information below to help us resolve your issue faster. If you have a question or need general help, please join our [Discord community](https://www.openstatus.dev/discord). 13 - type: input 14 id: reproduction-link 15 attributes: 16 label: Reproduction / Replay Link (Optional) 17 placeholder: "https://github.com/username/repository-name/" 18 description: | 19 Link to a minimal reproduction (GitHub repository, CodeSandbox, StackBlitz, etc.) or a [Replay recording](https://www.replay.io/). 20 21 **Do not link to your actual project**, but provide a minimal reproduction in a fresh project. 22 23 Instructions: 24 - [How to record a Replay](https://docs.replay.io/bug-reports/recording-a-replay) 25 validations: 26 required: false 27 - type: textarea 28 attributes: 29 label: Description 30 description: Describe the issue that you're seeing. 31 value: | 32 <!-- Be as precise as you can. Feel free to share screenshots, videos, or data from the devtools of your browser --> 33 34 **Steps to reproduce:** 35 36 1. Step 1 37 2. Step 2 38 39 **Expected behavior:** 40 41 <!-- Describe what you expected to happen --> 42 43 **Actual behavior:** 44 45 <!-- Describe what actually happened --> 46 validations: 47 required: true 48 - type: textarea 49 attributes: 50 label: Environment 51 render: Shell 52 description: 53 Run "npx envinfo --system --browsers --binaries --npmPackages" in your 54 project directory and paste the output here. 55 placeholder: | 56 You'll get an output similar to this: 57 58 System: 59 OS: Operating System 60 CPU: CPU 61 Binaries: 62 Node: X 63 npm: X 64 Browsers: 65 Chrome: X 66 Edge: X 67 validations: 68 required: false