mirror of
https://github.com/golang/go
synced 2024-11-14 13:30:30 -07:00
8db131082d
Also fixup wording across other templates. Fixes #64890 Change-Id: I6f9ade440b6702ddfafc21ccb7fbc6cabc2b856e Reviewed-on: https://go-review.googlesource.com/c/go/+/553155 Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Joseph Tsai <joetsai@digital-static.net> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
43 lines
1.9 KiB
YAML
43 lines
1.9 KiB
YAML
name: Pkg.go.dev package removal request
|
|
description: Request a package be removed from the documentation site (pkg.go.dev)
|
|
title: "x/pkgsite: package removal request for [type path here]"
|
|
labels: ["pkgsite/package-removal"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: "Please answer these questions before submitting your issue. Thanks!"
|
|
- type: input
|
|
id: package-path
|
|
attributes:
|
|
label: "What is the path of the package that you would like to have removed?"
|
|
description: |
|
|
We can remove packages with a shared path prefix.
|
|
For example, a request for 'github.com/author' would remove all pkg.go.dev pages with that package path prefix.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: package-owner
|
|
attributes:
|
|
label: "Are you the owner of this package?"
|
|
description: |
|
|
Only the package owners can request to have their packages removed from pkg.go.dev.
|
|
If the package path doesn't include your github username, please provide some other form of proof of ownership.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: retraction-reason
|
|
attributes:
|
|
label: "What is the reason that you could not retract this package instead?"
|
|
description: |
|
|
Requesting we remove a module here only hides the generated documentation on pkg.go.dev.
|
|
It does not affect the behaviour of proxy.golang.org or the go command.
|
|
Instead we recommend using the retract directive which will be processed by all 3 of the above.
|
|
|
|
If you have deleted your repo, please recreate it and publish a retraction.
|
|
|
|
Retracting a module version involves adding a retract directive to your go.mod file and publishing a new version.
|
|
For example: https://github.com/jba/retract-demo/blob/main/go.mod#L5-L8.
|
|
See https://pkg.go.dev/about#removing-a-package for additional tips on retractions.
|
|
validations:
|
|
required: true
|