mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-09 20:50:20 -05:00
Don't hard code the owner name and repo name in the Travis file #1502
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @stripedpajamas on GitHub.
Currently we check the current releases by asking Github's API about VSCodium/vscodium's releases. This makes PRs more dangerous: a change to anything in the build matrix won't necessary be run through Travis because the binaries already exist.
Suggest using the
$TRAVIS_REPO_SLUGenv var which resolves toowner_name/repo_namein this API call. That way it will attempt all the builds during local development (provided a$GITHUB_TOKENis defined).