mirror of
https://github.com/golang/go
synced 2024-11-15 05:40:32 -07:00
3e67f46d4f
The multiple issue templates pre-populate the issue title with a prefix that Go issues customarily have. The "affected/package" phrase is short for "the import path of the affected package". Let's try simplifying it to just "import/path", and also include "issue title" to make the title a more representative template of what the final title should look like. Updates #29839. Change-Id: I9736d24cf3d0a51536ac13dd07dd189fb51da021 Reviewed-on: https://go-review.googlesource.com/c/go/+/544556 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Heschi Kreinick <heschi@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev>
99 lines
3.1 KiB
YAML
99 lines
3.1 KiB
YAML
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms
|
|
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
|
|
name: Bugs
|
|
description: The go command, standard library, or anything else
|
|
labels: [ 'kind/bug', 'bug' ]
|
|
title: "import/path: issue title"
|
|
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for helping us improve! 🙏 Please answer these questions and provide as much information as possible about your problem.
|
|
|
|
- type: input
|
|
id: go-version
|
|
attributes:
|
|
label: Go version
|
|
description: What version of Go are you using (`go version`)?
|
|
placeholder: ex. go version go1.20.7 darwin/arm64
|
|
validations:
|
|
required: true
|
|
|
|
- type: checkboxes
|
|
id: reproduce-latest-release
|
|
attributes:
|
|
label: Reproducibility
|
|
options:
|
|
- label: Does this issue reproduce with the latest release?
|
|
|
|
- type: textarea
|
|
id: os-and-processor
|
|
attributes:
|
|
label: "What operating system and processor architecture are you using (`go env`)?"
|
|
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=""
|
|
GOHOSTARCH="arm64"
|
|
GOHOSTOS="darwin"
|
|
GOINSECURE=""
|
|
GOMODCACHE="/Users/gopher/go/pkg/mod"
|
|
GONOPROXY=""
|
|
GONOSUMDB=""
|
|
GOOS="darwin"
|
|
GOPATH="/Users/gopher/go"
|
|
GOPRIVATE=""
|
|
GOPROXY="https://proxy.golang.org,direct"
|
|
GOROOT="/usr/local/go"
|
|
GOSUMDB="sum.golang.org"
|
|
GOTMPDIR=""
|
|
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_arm64"
|
|
GOVCS=""
|
|
GOVERSION="go1.20.7"
|
|
GCCGO="gccgo"
|
|
AR="ar"
|
|
CC="clang"
|
|
CXX="clang++"
|
|
CGO_ENABLED="1"
|
|
GOMOD="/dev/null"
|
|
GOWORK=""
|
|
CGO_CFLAGS="-O2 -g"
|
|
CGO_CPPFLAGS=""
|
|
CGO_CXXFLAGS="-O2 -g"
|
|
CGO_FFLAGS="-O2 -g"
|
|
CGO_LDFLAGS="-O2 -g"
|
|
PKG_CONFIG="pkg-config"
|
|
GOGCCFLAGS="-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/44/nbbyll_10jd0z8rj_qxm43740000gn/T/go-build2331607515=/tmp/go-build -gno-record-gcc-switches -fno-common"
|
|
render: shell
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: what-did-you-do
|
|
attributes:
|
|
label: "What did you do?"
|
|
description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on go.dev/play is best."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected-behavior
|
|
attributes:
|
|
label: "What did you expect to see?"
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: actual-behavior
|
|
attributes:
|
|
label: "What did you see instead?"
|
|
validations:
|
|
required: true
|
|
|