Skip to content

Instantly share code, notes, and snippets.

View ansiwen's full-sized avatar
🚜
Tenacious Tractor

Sven Anderson ansiwen

🚜
Tenacious Tractor
View GitHub Profile
@ansiwen
ansiwen / auto-star-openstack-repo.py
Last active June 21, 2017 12:18 — forked from jd/auto-star-openstack-repo
Automatically star any OpenStack Git repository which contains own commits
#!/usr/bin/env python
from github import Github
from getpass import getpass
USERNAME = raw_input("GitHub username: ")
PASSWORD = getpass()
ORGS = ("openstack", "stackforge", "openstack-dev", "openstack-infra")
g = Github(USERNAME, PASSWORD)