Problem to Solve
The grpc-generator command supports specifying --proto-include-path multiple times, but the GitHub Actions workflows' proto-include-path input supports only a single string.
Proposed Solution
workflow_call inputs support only the types boolean, number, and string, so the easiest solution is to treat the proto-include-path input as a space-delimited list and add the prefix --proto-include-path to each element.
AB#3236145
Problem to Solve
The
grpc-generatorcommand supports specifying--proto-include-pathmultiple times, but the GitHub Actions workflows'proto-include-pathinput supports only a single string.Proposed Solution
workflow_call inputs support only the types boolean, number, and string, so the easiest solution is to treat the
proto-include-pathinput as a space-delimited list and add the prefix--proto-include-pathto each element.AB#3236145