Rename 'ci/circleci' Github status

Hi,

There’s a double deploy issue with Heroku if a CI reports success twice and I’m looking into using a different name for the CircleCi reporter to see if it fixes the issue.

Our setup issue is that we’d like to have Travis and Circle adding status checks to the PR which kicks off the double deploy.

Is there any way we can modify the name reported when enabling ‘GitHub status updates’?
https://circleci.com/gh/deliveroo/temp-loris-hooks/edit#advanced-settings

Thanks!

Added a step with a Curl POST to get my GitHub status check without the double deploy.

curl -H “Authorization: token $GH_ACCESS_TOKEN” -X POST -d “{ “state”:“pending”, “target_url”:”$CIRCLE_BUILD_URL", “description”:“Building Dockeroo image”, “context”:“artifact/docker” }" https://api.github.com/repos/my-org/my-repo/statuses/$CIRCLE_SHA1