this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

codereview.cfg: add cue-unity-new

So that `cueckoo runtrybot` knows where to send the second trigger.
See https://cuelang.org/cl/553728.

Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
Change-Id: Id9002c540b2e62f8668bb3a385ff40716e79acdc
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/553729
TryBot-Result: CUEcueckoo <cueckoo+gerrithub@cuelang.org>
Unity-Result: CUEcueckoo <cueckoo+gerrithub@cuelang.org>
Reviewed-by: Paul Jolly <paul@myitcv.io>

+10 -6
+1
codereview.cfg
··· 3 3 gerrit: https://review.gerrithub.io/a/cue-lang/cue 4 4 github: https://github.com/cue-lang/cue 5 5 cue-unity: https://github.com/cue-unity/unity 6 + cue-unity-new: https://github.com/cue-unity/unity-private
+4 -3
internal/ci/base/codereview.cue
··· 12 12 // file that drives golang.org/x/review/git-codereview. This config 13 13 // file is also used by github.com/cue-sh/tools/cmd/cueckoo. 14 14 #codeReview: { 15 - gerrit?: string 16 - github?: string 17 - "cue-unity"?: string 15 + gerrit?: string 16 + github?: string 17 + "cue-unity"?: string 18 + "cue-unity-new"?: string 18 19 } 19 20 20 21 // #toCodeReviewCfg converts a #codeReview instance to
+5 -3
internal/ci/repo/repo.cue
··· 11 11 12 12 githubRepositoryPath: "cue-lang/cue" 13 13 14 - unityRepositoryPath: "cue-unity/unity" 15 - unityRepositoryURL: "https://github.com/" + unityRepositoryPath 14 + unityRepositoryPath: "cue-unity/unity" 15 + unityRepositoryURL: "https://github.com/" + unityRepositoryPath 16 + unityNewRepositoryURL: unityRepositoryURL + "-private" 16 17 17 18 cuelangRepositoryPath: "cue-lang/cuelang.org" 18 19 ··· 55 56 // zeroReleaseTagSuffix. 56 57 zeroReleaseTagPattern: "*" + zeroReleaseTagSuffix 57 58 58 - codeReview: "cue-unity": unityRepositoryURL 59 + codeReview: "cue-unity": unityRepositoryURL 60 + codeReview: "cue-unity-new": unityNewRepositoryURL