I am using travis-ci to test my project Smoke (https://github.com/phmLabs/Smoke). When the test ran I want to report the result to a different system via webhook. The problem is that the webhook url contains a secret key I don't want to put inside my travis.yml file. So I tried using an environment var:
notifications:
webhooks: http://monitor.koalamon.com/webhook/travis/?api_key=$KOALAMON_API_KEY
unfortunateli the environment variable gets escaped and I can see
127.0.0.1 - - [26/May/2016:21:28:25 +0200] "POST /webhook/travis/?api_key=%24KOALAMON_API_KEY HTTP/1.1" 200 278 "-" "Faraday v0.9.2"
in my apache logs. Does anybody know how to solve this problem?