/example-travis-downstream

Example repository for a upstream/downstream setup. This is downstream.

Primary LanguageShellThe UnlicenseUnlicense

example-travis-downstream

Example repository for a upstream/downstream setup. This is downstream.

Settings

If you want to try this setup, fork both this and the downstream repository and modify the following vars in travis.yml:

  • UPSTREAM_REPO: {user}/{repo} point to your upstream fork
  • secure: [... gibberish ...] These need to be replaced by secret tokens for GitHub and Travis.

GitHub token

You can either go the road of registering this as your own application and authorizing this using GitHubs automated OAUTH token generation, or we simply create a restricted personal token.

For my usecase the laster was enough, so thats why I document this here.

Got to your personal token settings and create a new token with scope repo:status. This will allow this script to change the build status of all repositories you have push access to. Copy this token and save locally. DON'T PUT THIS TOKEN UNENCRYPTED INTO YOUR TRAVIS CONFIG

Now install the travis cli and encrypt your token. This will look something like this:

travis login
travis encrypt -r ${DOWNSTREAM_REPO} GITHUB_TOKEN=${YOUR_TOKEN}

Where ${DOWNSTREAM_REPO} for me would be TheMarex/example-travis-downstream.

Copy the result in the .travis.yml.