Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you remove a Github repository for Travis CI tests?

Tags:

travis-ci

I created a Travis CI test using a Github repository. I can't seem to find any information about how to remove it from the Travis CI test page. Is this at all possible?

like image 625
user1715156 Avatar asked Jun 16 '15 18:06

user1715156


People also ask

Can you delete GitHub repository?

Steps to delete a GitHub repository Select the repository you wish to delete. Click on the Settings tab. Move down to the Danger Zone section page. Click the Delete this repository option.

How do I permanently delete a repository?

Deleting a RepositoryOpen the repository you want to delete. At the top bar, click Settings. Scroll down until you get to the Danger Zone. There, click Delete this repository.


2 Answers

Yes!

Log in to Travis CI (travis-ci.org) under your account.

Then check on the left sidebar. You should see a My repositories label followed by a plus sign (i.e. +).

Click on that plus sign (i.e. +).

It will lead you to a page listing all your Github repositories with an on/off toggle beside each one.

Just put the toggle to "off" for the repositories you don't want in Travis CI.

Hope this helps!

like image 185
Dominic Jodoin Avatar answered Sep 28 '22 03:09

Dominic Jodoin


The accepted answer doesn't appear to work when using the new Travis marketplace app at the time of writing - there's no "on/off" toggle for repositories.

Instead, you need to just grant access to the repositories you want Travis to access in Github. On your profile page in Travis, click "Manage repositories on Github":

manage repositories on Github

Then, under "Repository access", click "Only select repositories":

only select repositories

You can then add / remove the repositories you want to show up in the Travis CI test page.

like image 36
Michael Berry Avatar answered Sep 28 '22 05:09

Michael Berry