mirror of
https://github.com/burrowers/garble.git
synced 2025-12-24 12:58:05 +08:00
I forgot to update the original Go template away from `go version`. Note that `go env` already tells us what we need via e.g. GOVERSION, so we can avoid asking for `go version` separately.
62 lines
1.7 KiB
YAML
62 lines
1.7 KiB
YAML
name: Bug Report
|
|
description: File a bug report.
|
|
|
|
body:
|
|
- type: textarea
|
|
id: garble-version
|
|
attributes:
|
|
label: "Output of `garble version`:"
|
|
placeholder: |
|
|
mvdan.cc/garble v0.14.2
|
|
|
|
Build settings:
|
|
-buildmode exe
|
|
-compiler gc
|
|
CGO_ENABLED 1
|
|
GOARCH amd64
|
|
GOOS linux
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: go-env
|
|
attributes:
|
|
label: "Output of `go env` in your module/workspace:"
|
|
placeholder: |
|
|
GO111MODULE=""
|
|
GOARCH="arm64"
|
|
GOBIN="/Users/gopher/go/bin"
|
|
GOCACHE="/Users/gopher/go/cache"
|
|
GOENV="/Users/gopher/Library/Application Support/go/env"
|
|
GOEXE=""
|
|
GOEXPERIMENT=""
|
|
GOFLAGS=""
|
|
[...]
|
|
render: shell
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: what-did-you-do
|
|
attributes:
|
|
label: "What did you do?"
|
|
description: "Provide clear steps for others to reproduce the error. If your code is private, try reproducing via a small program. As a fallback, provide as many relevant details as possible."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: actual-behavior
|
|
attributes:
|
|
label: "What did you see happen?"
|
|
description: Command invocations and their associated output. Prefer copying text output over using screenshots.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected-behavior
|
|
attributes:
|
|
label: "What did you expect to see?"
|
|
description: Why is the current output incorrect, and any additional context we may need to understand the issue.
|
|
validations:
|
|
required: true
|