Make transferFlags a multivariate function
Compare changes
The internal GitLab Runner Service is temporarily degraded. Jobs might be queued longer than usual. Your own project or group runners as well as the HIFIS Runners are unaffected.
It is not uncommon to transfer the flags from multiple fields to one target, e.g tansferFlags(field=["a", "b", "c"], target="x"). Currently we only support this by calling
transferFlagsmultiple times, which might trash up the history with empty columns. This MR makes
transferFlags` a function supporting the projection of flags from many to one.