Skip to content

Commit 35c4960

Browse files
committed
general: use cuelang.org/issues as the general issue link
The redirect configured for cuelang.org/issue(s)?.* is generic, in that the .* is splatted to the target github.com/cue-lang/cue/issues*. This means we can use cuelang.org/issue(s)? as our generic (new) issue link (not that we are planning to move repository locations ever again!) Signea-off-by: Paul Jolly <[email protected]> Change-Id: I446edb5b0a0f8ec99e4abdf70b9f9136b16a08da Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/520745 Unity-Result: CUEcueckoo <[email protected]> TryBot-Result: CUEcueckoo <[email protected]> Reviewed-by: Paul Jolly <[email protected]>
1 parent a68df18 commit 35c4960

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ https://review.gerrithub.io/q/project:cue-lang%252Fcue.
152152
To contribute, please read the [Contribution Guide](./doc/contribute.md).
153153

154154
To report issues or make a feature request, use the
155-
[issue tracker](https://github.com/cue-lang/cue/issues).
155+
[issue tracker](https://cuelang.org/issues).
156156

157157
Changes can be contributed using Gerrit or Github pull requests.
158158

cmd/cue/cmd/trim.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func runTrim(cmd *Command, args []string) error {
137137
if k != diff.Identity {
138138
diff.Print(os.Stdout, script)
139139
fmt.Println("Aborting trim, output differs after trimming. This is a bug! Use -i to force trim.")
140-
fmt.Println("You can file a bug here: https://github.com/cue-lang/cue/issues/new?assignees=&labels=NeedsInvestigation&template=bug_report.md&title=")
140+
fmt.Println("You can file a bug here: https://cuelang.org/issues/new?assignees=&labels=NeedsInvestigation&template=bug_report.md&title=")
141141
os.Exit(1)
142142
}
143143
}

cue/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ Value:
989989
%v
990990
991991
You could file a bug with the above information at:
992-
https://github.com/cue-lang/cue/issues/new?assignees=&labels=NeedsInvestigation&template=bug_report.md&title=.
992+
https://cuelang.org/issues/new?assignees=&labels=NeedsInvestigation&template=bug_report.md&title=.
993993
`
994994
cg := &ast.CommentGroup{Doc: true}
995995
msg := fmt.Sprintf(format, name, err, p, v)

doc/contribute.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ profile](https://review.gerrithub.io/settings/#HTTPCredentials). Then use an
138138
existing HTTP authentication mechanism like `.netrc`, macOS KeyChain, or some
139139
other [crendential helper](https://git-scm.com/docs/gitcredentials). If you have
140140
any troubles with this step, please [raise an
141-
issue](https://github.com/cue-lang/cue/issues/new).
141+
issue](https://cuelang.org/issues/new).
142142

143143
Then visit https://review.gerrithub.io/admin/repos/cue-lang/cue, then click
144144
"HTTP" or "SSH" then copy the corresponding "Clone" command.
@@ -199,7 +199,7 @@ an <a href="https://cuelang.org/issues">existing one</a>.
199199
### Check the issue tracker
200200

201201
Whether you already know what contribution to make, or you are searching for
202-
an idea, the [issue tracker](https://github.com/cue-lang/cue/issues) is
202+
an idea, the [issue tracker](https://cuelang.org/issues) is
203203
always the first place to go.
204204
Issues are triaged to categorize them and manage the workflow.
205205

@@ -223,13 +223,13 @@ You can use GitHub's search functionality to find issues to help out with. Examp
223223

224224
- Issues that need investigation:
225225
[`is:issue is:open label:NeedsInvestigation`](
226-
https://github.com/cue-lang/cue/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsInvestigation)
226+
https://cuelang.org/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsInvestigation)
227227
- Issues that need a fix:
228-
[`is:issue is:open label:NeedsFix`](https://github.com/cue-lang/cue/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix)
228+
[`is:issue is:open label:NeedsFix`](https://cuelang.org/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix)
229229
- Issues that need a fix and have a CL:
230-
[`is:issue is:open label:NeedsFix "cuelang.org/cl"`](https://github.com/cue-lang/cue/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix+%22golang.org%2Fcl%22)
230+
[`is:issue is:open label:NeedsFix "cuelang.org/cl"`](https://cuelang.org/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix+%22golang.org%2Fcl%22)
231231
- Issues that need a fix and do not have a CL:
232-
[`is:issue is:open label:NeedsFix NOT "cuelang.org/cl"`](https://github.com/cue-lang/cue/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix+NOT+%22golang.org%2Fcl%22)
232+
[`is:issue is:open label:NeedsFix NOT "cuelang.org/cl"`](https://cuelang.org/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix+NOT+%22golang.org%2Fcl%22)
233233

234234
### Open an issue for any new problem
235235

0 commit comments

Comments
 (0)