I was wondering how to display the commit message and committing user for a HipChat bot commit to a deployment hook for Heroku. I know this is the basic setup:
heroku addons:add deployhooks:hipchat \
--auth_token=my_auth_token \
--room="My Company's Room"
Would the new Heroku command would probably be something like:
heroku addons:add deployhooks:hipchat \
--auth_token=my_auth_token \
--room="My Company's Room"
--user=<<user goes here>>
--message=<<commit message goes here>>
Long story short, when the HipChat bot is updated, how can I send the commit message to the room, and show which user made the commit? I also know I'm not "adding" the add-on. What should I change "add" to?