Switching a repository from TravisCI to GitHub Actions

These instructions are geared towards edX’s recent TravisCI → GitHub Actions migration, but they generally apply for any migration of a GitHub repository from one CI provider to another.

This guide is just about the button-clicking you need to do to switch a repo over. It assumes that you know how to rewrite your TravisCI checks into GitHub Actions.

Steps:

  1. Open a PR that rewrites your TravisCI checks as GHAs (GitHub Actions). Delete all Travis-related files (.travis/ and/or .travis.yml).

    • If your organization has self-hosted GHA runners, then make sure your check is configured to use those instead of GitHub’s hosted runners. (edXers: This applies to you; ask your eSRE if you need help.)

    • The correct conventional commit type for this change is build:

  2. Review the PR, ensuring that the new GitHub Actions pass.

  3. Make it so TravisCI checks are no longer required (requires repository admin access):

    1. In your repository, go to repo Settings → Branches → Branch Protection Rules.

    2. Edit the default branch ("master" or “main”).

    3. Scroll to "Require status checks before merging".

    4. Delete "Travis CI" from required checks

    5. Add in any new GitHub actions checks. They may not be available yet -- if so, we'll address this in a later step.

    6. Save

  4. Refresh the PR page. The build should now be green.

  5. Merge the PR.

  6. Make it so GHA checks are required (requries repository admin access):

    1. Go back to Settings → Branches → Branch Protection Rules → (default branch) → Require status checks before merging.

    2. Add in any new GitHub actions checks that weren't available before merging.

    3. Save.

  7. Optional: Reduce your repository's attack surface area by removing TravisCI’s access to it (requires organization-level admin access – edXers: Ask your eSRE to do this.):

    1. In your GitHub organization, go to Settings → Installed GitHub Apps.

    2. Configure Travis CI.

    3. Under “Only Select Repositories”, remove the repository that you just switched over to GHA.

    4. Save.