|
| 1 | +# Copyright 2025 Google LLC |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +name: 🐞 Bug Report |
| 16 | +description: File a report for unexpected or undesired behavior. |
| 17 | +title: "<brief summary of what bug or error was observed>" |
| 18 | +labels: ["type: bug"] |
| 19 | +type: "bug" |
| 20 | + |
| 21 | +body: |
| 22 | + - type: markdown |
| 23 | + attributes: |
| 24 | + value: | |
| 25 | + Thanks for helping us improve! 🙏 Please answer these questions and provide as much information as possible about your problem. |
| 26 | + |
| 27 | + - id: preamble |
| 28 | + type: checkboxes |
| 29 | + attributes: |
| 30 | + label: Pre-reqs |
| 31 | + description: | |
| 32 | + Please run through the following list and make sure you've tried the usual "quick fixes": |
| 33 | + - Search the [current open issues](https://github.com/gemini-cli-extensions/cloud-sql-postgresql/issues) |
| 34 | + - Update to the latest version of the extension and [Gemini CLI](https://github.com/google-gemini/gemini-cli?tab=readme-ov-file#stable) |
| 35 | + options: |
| 36 | + - label: "I've searched the current open issues" |
| 37 | + required: true |
| 38 | + - label: "I've updated to the latest versions" |
| 39 | + |
| 40 | + - type: input |
| 41 | + id: version |
| 42 | + attributes: |
| 43 | + label: Extension Version |
| 44 | + description: | |
| 45 | + What version of the extension are you using (`gemini extensions list` or `/extensions list`)? |
| 46 | + placeholder: ex. version 0.1.0 |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + |
| 50 | + - type: input |
| 51 | + id: version |
| 52 | + attributes: |
| 53 | + label: Gemini CLI Version |
| 54 | + description: | |
| 55 | + What version of the Gemini CLI are you using (`gemini --version`)? |
| 56 | + placeholder: ex. version 0.6.0 |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + |
| 60 | + - type: input |
| 61 | + id: environment |
| 62 | + attributes: |
| 63 | + label: Environment |
| 64 | + description: "Let us know what OS type and version in which you are seeing the bug!" |
| 65 | + placeholder: output of `uname -a` |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + |
| 69 | + - id: current-behavior |
| 70 | + type: textarea |
| 71 | + attributes: |
| 72 | + label: Current Behavior |
| 73 | + description: "Please enter a detailed description of the behavior you encountered instead." |
| 74 | + validations: |
| 75 | + required: true |
| 76 | + |
| 77 | + - id: expected-behavior |
| 78 | + type: textarea |
| 79 | + attributes: |
| 80 | + label: Expected Behavior |
| 81 | + description: | |
| 82 | + Please enter a detailed description of the behavior you expected, and any information about what behavior you |
| 83 | + noticed and why it is defective or unintentional. |
| 84 | + validations: |
| 85 | + required: true |
| 86 | + |
| 87 | + - type: textarea |
| 88 | + id: repro |
| 89 | + attributes: |
| 90 | + label: Steps to reproduce? |
| 91 | + description: | |
| 92 | + How can we reproduce this bug? Please walk us through it step by step, |
| 93 | + with as much relevant detail as possible. A 'minimal' reproduction is |
| 94 | + preferred, which means removing as much of the examples as possible so |
| 95 | + only the minimum required to run and reproduce the bug is left. |
| 96 | + value: | |
| 97 | + 1. ? |
| 98 | + 2. ? |
| 99 | + 3. ? |
| 100 | + ... |
| 101 | + validations: |
| 102 | + required: true |
| 103 | + |
| 104 | + - type: textarea |
| 105 | + id: additional-details |
| 106 | + attributes: |
| 107 | + label: Additional Details |
| 108 | + description: | |
| 109 | + Any other information you want us to know? |
0 commit comments