|
| 1 | +--- |
| 2 | +# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema |
| 3 | +name: 🐛 Bug Report |
| 4 | +description: If something isn't working 🔧 |
| 5 | +title: "[bug]: " |
| 6 | +labels: [bug] |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: Thanks for taking the time to fill out this bug report! |
| 11 | + - type: textarea |
| 12 | + id: what-happened |
| 13 | + attributes: |
| 14 | + label: 🐛 What happened? |
| 15 | + description: A clear and concise description of what the bug is. |
| 16 | + placeholder: Describe what happened |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + - type: textarea |
| 20 | + id: reproduce |
| 21 | + attributes: |
| 22 | + label: 🔬 How to reproduce? |
| 23 | + description: Steps to reproduce the behavior. |
| 24 | + placeholder: | |
| 25 | + 1. ... |
| 26 | + 2. ... |
| 27 | + validations: |
| 28 | + required: false |
| 29 | + - type: textarea |
| 30 | + id: code-sample |
| 31 | + attributes: |
| 32 | + label: 🏗️ Code Sample / Log |
| 33 | + description: Please copy and paste any relevant code sample / log output. |
| 34 | + render: Shell |
| 35 | + placeholder: This will be automatically formatted into code, so no need for backticks. |
| 36 | + validations: |
| 37 | + required: false |
| 38 | + - type: input |
| 39 | + id: chatgpt-pre-commit-hooks |
| 40 | + attributes: |
| 41 | + label: 🌌 Environment (ChatGPT / OpenAI pre-commit-hooks) |
| 42 | + description: What ChatGPT / OpenAI pre-commit-hooks version are you running? |
| 43 | + placeholder: 0.0.1 |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + - type: input |
| 47 | + id: python |
| 48 | + attributes: |
| 49 | + label: 🌌 Environment (pre-commit) |
| 50 | + description: "What pre-commit version are you running? Get it with: `pre-commit --version`" |
| 51 | + placeholder: 3.2.2 |
| 52 | + validations: |
| 53 | + required: true |
| 54 | + - type: input |
| 55 | + id: python |
| 56 | + attributes: |
| 57 | + label: 🌌 Environment (Python) |
| 58 | + description: "What python version are you running? Get it with: `python --version`" |
| 59 | + placeholder: 3.10.10 |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + - type: dropdown |
| 63 | + id: os |
| 64 | + attributes: |
| 65 | + label: 🌌 Environment (OS) |
| 66 | + description: What OS are you running? |
| 67 | + options: |
| 68 | + - Linux |
| 69 | + - Windows |
| 70 | + - macOS |
| 71 | + validations: |
| 72 | + required: true |
| 73 | + - type: textarea |
| 74 | + id: screenshots |
| 75 | + attributes: |
| 76 | + label: 📷 Screenshots |
| 77 | + description: If applicable, add screenshots to help explain your problem. |
| 78 | + placeholder: Just do Ctrl+V having screenshot in the clipboard. |
| 79 | + validations: |
| 80 | + required: false |
| 81 | + - type: textarea |
| 82 | + id: expected-behavior |
| 83 | + attributes: |
| 84 | + label: 📈 Expected behavior |
| 85 | + description: A clear and concise description of what you expected to happen. |
| 86 | + placeholder: A clear and concise description of what you expected to happen. |
| 87 | + validations: |
| 88 | + required: false |
| 89 | + - type: textarea |
| 90 | + id: additional-context |
| 91 | + attributes: |
| 92 | + label: 📎 Additional context |
| 93 | + description: Add any other context about the problem here. |
| 94 | + placeholder: Add any other context about the problem here. |
| 95 | + validations: |
| 96 | + required: false |
| 97 | + - type: checkboxes |
| 98 | + id: terms |
| 99 | + attributes: |
| 100 | + label: 📜 Code of Conduct |
| 101 | + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/DariuszPorowski/chatgpt-pre-commit-hooks/blob/main/CODE_OF_CONDUCT.md) |
| 102 | + options: |
| 103 | + - label: I agree to follow this project's Code of Conduct. |
| 104 | + required: true |
0 commit comments