Skip to content

Commit

Permalink
merging PR Chaosthebot#2
Browse files Browse the repository at this point in the history
Chaosthebot#2

PR passed with a vote of 26 for and 0 against, with a 
weighted total of 18.3 and a threshold of 1.0.

Vote record:
@Ameliorate: 1
@BrianEstrada: 1
@HmmmQuestionMark: 1
@jkillian: 1
@SSStormy: 1
@Sag0Sag0: 1
@Timidger: 1
@agargiulo: 1
@ammaraskar: 1
@Brendan09: 1
@camd67: 1
@ccapitalK: 1
@devmattrick: 1
@etscrivner: 1
@hawkrives: 1
@hong-duc: 1
@howdoicomputer: 1
@just-nobody: 1
@miyu: 1
@mtraynham: 1
@rmb938: 1
@shadowhand: 1
@stoicio: 1
@the-chosen-one: 1
@tomatosoupcan: 1
@vivekzhere: 1
  • Loading branch information
chaosbot authored May 23, 2017
2 parents fce24de + 506c1ec commit dd2d2ca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions chaos.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import github_api.repos
import github_api.comments
from github_api import exceptions as gh_exc
import platform

import patch

Expand Down Expand Up @@ -77,6 +78,10 @@ def restart_self():
gh.prs.label_pr(api, settings.URN, pr_num, ["can't merge"])
continue

# Comment on the pr with the OS so we can eventually install cowsay and comment with that
dist, version, codename = platform.linux_distribution()
gh.comments.leave_comment(api, settings.URN, pr_num, dist+' '+version+' '+codename)

gh.prs.label_pr(api, settings.URN, pr_num, ["accepted"])
needs_update = True

Expand Down

0 comments on commit dd2d2ca

Please sign in to comment.