I've found the following .travis.yml
template.
I've noticed this:
repo: {GITHUB_USER}/{PROJECT_NAME}
Is this a special .yml
variable syntax I'm not familiar with? Where can I set these values (GITHUB_USER
, PROJECT_NAME
)?
I know I can use environment variables, like so:
repo: $GITHUB_USER/$PROJECT_NAME
but this syntax looks different.