|
| 1 | +name: "Bug Report" |
| 2 | +description: Report a bug with pyton.org website to help us improve |
| 3 | +title: "Bug: <title>" |
| 4 | +labels: ["bug", "Triage Required"] |
| 5 | + |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + This is the repository and issue tracker for the https://www.pyton.org website. |
| 11 | +
|
| 12 | + If you're looking to file an issue with CPython itself, please click here: [CPython Issues](https://github.com/python/cpython/issues/new/choose). |
| 13 | +
|
| 14 | + Issues related to [Python's documentation](https://docs.python.org) can also be filed [here](https://github.com/python/cpython/issues/new?assignees=&labels=docs&template=documentation.md). |
| 15 | +
|
| 16 | + - type: textarea |
| 17 | + id: description |
| 18 | + attributes: |
| 19 | + label: "Describe the bug" |
| 20 | + description: A clear and concise description of what the bug is. |
| 21 | + validations: |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: textarea |
| 25 | + id: reproduction |
| 26 | + attributes: |
| 27 | + label: "To Reproduce" |
| 28 | + description: Steps to reproduce the behavior |
| 29 | + placeholder: | |
| 30 | + 1. Go to '...' |
| 31 | + 2. Click on '....' |
| 32 | + 3. Scroll down to '....' |
| 33 | + 4. See error |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + |
| 37 | + - type: textarea |
| 38 | + id: expected |
| 39 | + attributes: |
| 40 | + label: "Expected behavior" |
| 41 | + description: A clear and concise description of what you expected to happen. |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: input |
| 46 | + id: reprod-url |
| 47 | + attributes: |
| 48 | + label: "URL to the issue" |
| 49 | + description: Please enter the URL to provide a reproduction of the issue, if applicable |
| 50 | + placeholder: ex. https://python.org/my-issue/here |
| 51 | + validations: |
| 52 | + required: false |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: screenshot |
| 56 | + attributes: |
| 57 | + label: "Screenshots" |
| 58 | + description: If applicable, add screenshots to help explain your problem. |
| 59 | + value: | |
| 60 | + "" |
| 61 | + render: bash |
| 62 | + validations: |
| 63 | + required: false |
| 64 | + |
| 65 | + - type: dropdown |
| 66 | + id: browsers |
| 67 | + attributes: |
| 68 | + label: "Browsers" |
| 69 | + description: What browsers are you seeing the problem on? |
| 70 | + multiple: true |
| 71 | + options: |
| 72 | + - Firefox |
| 73 | + - Chrome |
| 74 | + - Safari |
| 75 | + - Microsoft Edge |
| 76 | + - Other |
| 77 | + validations: |
| 78 | + required: true |
| 79 | + |
| 80 | + - type: dropdown |
| 81 | + id: os |
| 82 | + attributes: |
| 83 | + label: "Operating System" |
| 84 | + description: What operating system are you using? |
| 85 | + options: |
| 86 | + - Windows |
| 87 | + - macOS |
| 88 | + - Linux |
| 89 | + - iOS |
| 90 | + - Android |
| 91 | + - Other |
| 92 | + validations: |
| 93 | + required: true |
| 94 | + |
| 95 | + - type: input |
| 96 | + id: version |
| 97 | + attributes: |
| 98 | + label: "Browser Version" |
| 99 | + description: What version of the browser are you using? |
| 100 | + placeholder: "e.g. 22" |
| 101 | + validations: |
| 102 | + required: false |
| 103 | + |
| 104 | + - type: textarea |
| 105 | + id: logs |
| 106 | + attributes: |
| 107 | + label: "Relevant log output" |
| 108 | + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. |
| 109 | + render: shell |
| 110 | + validations: |
| 111 | + required: false |
| 112 | + |
| 113 | + - type: textarea |
| 114 | + id: additional |
| 115 | + attributes: |
| 116 | + label: "Additional context" |
| 117 | + description: Add any other context about the problem here. |
| 118 | + validations: |
| 119 | + required: false |
0 commit comments