#!/usr/bin/env python2.7
# -*- encoding: utf-8 -*-

from blunix_toolkit import github_api


repos = github_api.get_repos()
for repo in repos:
    full_name = github_api.get_repo_full_name(repo)
    if full_name.startswith('{}/role-'.format(github_api.org)):
        print full_name
