use env variable to prefill the register question
When running multi-runner on docker, in order to get the CA files right I needed to redo the procedure quite a lot of times (I'm not a very clever man)
what was really frustrating was to have to answer again and again these 3 questions
Please enter the gitlab-ci token for this runner:
Please enter the gitlab-ci description for this runner:
Please enter the gitlab-ci tags for this runner (comma separated):
Especially as under the hood the code rely on codegansta/cli it should not be very hard to bind these questions to env variables like GITLAB_CI_TOKEN
GITLAB_CI_DESCRIPTION
GITLAB_CI_TAGS
, so that one does not have to enter them again and again
(if it's already possible, I was not able to find it easily in the documentation)