How to contribute code to the Corona Open Source Plugins?

What is the protocol to contribute code to the Corona Open Source Plugins?

Is it as simple as forking, modifying, testing and pull request with a good description? Or do I need to email someone at Corona first?

The code I want to contribute is for the Google Play Game Services Plugin. The room listener for the current plugin returns an array of only participantIDs: event.data[1], event.data[2], event.data[3] and no player alias’s as listed in the Corona Docs: https://docs.coronalabs.com/daily/plugin/gameNetwork-google/request.html#set-room-listener

My update returns the participantIDs and the alias’s for the room listener like this: 

event.data[1].alias and event.data[1].participantID, event.data[2].alias and event.data[2].participantID, event.data[3].alias and event.data[3].participantID, and so on.

I also added return inviter alias and playerID to the show(‘invitations’) callback.

The code has been thoroughly tested and is ready to pull.

Thanks,

Warren