jannikschaper

Results 5 comments of jannikschaper

Especially considering GitHub officially documents this feature as "ternary operator like behavior" ([src](https://docs.github.com/en/actions/learn-github-actions/expressions#example)): ![image](https://github.com/haya14busa/action-cond/assets/150021423/0b70dd02-88fb-4ac8-aeed-928e687a5e3f)

Yes, definitely, that's what I meant And `fd --glob .foo` should get a warning too, because `--glob` also seems to anchor to the filename start

It works! ```ts const makeApiClient = ( kubeConfig: KubeConfig, ApiClientType: ApiConstructor, requestTimeoutInSeconds: number, ): T => { // Copied from KubeConfig.makeApiClient and adapted to add timeout // Suggested by @kubernetes/client-node...

@davidgamero I have a follow-up question to the timeout approach you suggested, if you don't mind How to clean up dangling timeout instances when requests complete normally? For example, with...