...
1# Copyright 2023 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
15name: 🐞 Bug Report
16description: File a bug report
17title: "Brief summary of what bug or error was observed"
18labels: ["type: bug"]
19body:
20 - type: markdown
21 attributes:
22 value: |
23 Thanks for stopping by to let us know something could be better!<br/>
24
25 Please run down the following list and make sure you've tried the usual "quick fixes":
26 - Search the [current open issues](https://github.com/GoogleCloudPlatform/cloud-sql-go-connector/issues)
27 - Check for answers on [StackOverflow](https://stackoverflow.com/questions/tagged/google-cloud-sql) (under the 'google-cloud-sql' tag)
28
29 If you are still having issues, please include as much information as possible below! :smile:
30 - type: textarea
31 id: bug-description
32 attributes:
33 label: Bug Description
34 description: "Please enter a detailed description of the bug, and any information about what behavior you noticed and why it is defective or unintentional."
35 validations:
36 required: true
37 - type: textarea
38 id: example-code
39 attributes:
40 label: Example code (or command)
41 description: "Please paste any useful application code related to the bug below. (if your code is in a public repo, feel free to paste a link!)"
42 render: Go
43 - type: textarea
44 id: stacktrace
45 attributes:
46 label: Stacktrace
47 description: "Paste any relevant stacktrace or error you are running into here. Be sure to filter sensitive information!"
48 render: bash
49 - type: textarea
50 id: repro
51 attributes:
52 label: Steps to reproduce?
53 description: "How do you trigger this bug? Please walk us through it step by step."
54 value: |
55 1. ?
56 2. ?
57 3. ?
58 ...
59 validations:
60 required: true
61 - type: textarea
62 id: environment
63 attributes:
64 label: Environment
65 description: "Let us know some details about the environment in which you are seeing the bug!"
66 value: |
67 1. OS type and version:
68 2. Go version:
69 3. Cloud SQL Go Connector version:
70 validations:
71 required: true
72 - type: textarea
73 id: additional-details
74 attributes:
75 label: Additional Details
76 description: "Any other information you want us to know?"
View as plain text