-
Notifications
You must be signed in to change notification settings - Fork 17.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/build/cmd/relui: workflow parameters of slice types aren't visibly shown #54240
Comments
Looked at this briefly. As expected, it was only a problem for non-string parameters, and it's because the current parameter display code assumes all parameters are strings, which isn't always the case as of #51191. Long term, we could extend the nice type-specific presentation that @toothrot did for results and outputs in #53382 to parameters too, but for now I'll mail a small CL that shows their JSON encoding, which is much better than invisible. |
Change https://go.dev/cl/422554 mentions this issue: |
This change breaks the layout a bit for some workflows. I am happy to fix it, though, and give it a little nicer visual treatment. https://build.golang.org/releases/workflows/14dad363-ab84-41b7-af65-1928299f3390 |
Sure, thanks for helping! |
Change https://go.dev/cl/422599 mentions this issue: |
Change https://go.dev/cl/443059 mentions this issue: |
It's unused as of CL 422599. For golang/go#54240. Change-Id: I53628d167f0da8ae0bd255be230def3e8905aab4 Reviewed-on: https://go-review.googlesource.com/c/build/+/443059 Auto-Submit: Dmitri Shuralyov <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Jenny Rakoczy <[email protected]>
relui currently renders a recent "announce-and-tweet-minor" workflow from the Go 1.18.5 and 1.17.13 minor release:
The values for the string parameters "Version", "Security Summary", etc., are displayed, but not for the "Release Coordinator Names" and "Security Fixes" parameters, likely because their type is []string.
(The parameter values are there in the database and were correctly used by the tasks; this is only a presentation issue.)
CC @golang/release, @cherrymui.
The text was updated successfully, but these errors were encountered: