I'm a solidity beginner...
This
Chainlink.Request memory request = buildChainlinkRequest(clJobId, address(this), this.registerConfirm.selector);
request.add("repo", msg.sender);
says
TypeError: Invalid type for argument in function call. Invalid implicit conversion from bytes20 to bytes memory requested.
The chainlink docs tell me that there are also the methods addBytes, addInt, addUint, addStringArray and setBuffer.
My first thought was to convert the address to a string but that doesn't seem to be so trivial in solidity. So I wonder how to handle this all in all.
Answers like this one confuse me because comments say it doesn't do what you'd expect.