Show when pushes are forced (github)
This commit is contained in:
parent
b744281e3d
commit
9235d23350
1 changed files with 11 additions and 5 deletions
|
@ -406,6 +406,10 @@ class Module(ModuleManager.BaseModule):
|
||||||
branch = data["ref"].split("/", 2)[2]
|
branch = data["ref"].split("/", 2)[2]
|
||||||
branch = utils.irc.color(branch, utils.consts.LIGHTBLUE)
|
branch = utils.irc.color(branch, utils.consts.LIGHTBLUE)
|
||||||
|
|
||||||
|
forced = ""
|
||||||
|
if data["forced"]:
|
||||||
|
forced = "%s " % utils.irc.color("force", utils.consts.RED)
|
||||||
|
|
||||||
if len(data["commits"]) <= 3:
|
if len(data["commits"]) <= 3:
|
||||||
for commit in data["commits"]:
|
for commit in data["commits"]:
|
||||||
id = self._short_hash(commit["id"])
|
id = self._short_hash(commit["id"])
|
||||||
|
@ -417,8 +421,10 @@ class Module(ModuleManager.BaseModule):
|
||||||
removed = self._removed(len(commit["removed"]))
|
removed = self._removed(len(commit["removed"]))
|
||||||
modified = self._modified(len(commit["modified"]))
|
modified = self._modified(len(commit["modified"]))
|
||||||
|
|
||||||
outputs.append("[%s/%s/%s files] commit by %s to %s: %s - %s"
|
outputs.append(
|
||||||
% (added, removed, modified, author, branch, message, url))
|
"[%s/%s/%s files] %s %spushed commit to %s: %s - %s"
|
||||||
|
% (added, removed, modified, author, forced, branch,
|
||||||
|
message, url))
|
||||||
else:
|
else:
|
||||||
first_id = self._short_hash(data["before"])
|
first_id = self._short_hash(data["before"])
|
||||||
last_id = self._short_hash(data["commits"][-1]["id"])
|
last_id = self._short_hash(data["commits"][-1]["id"])
|
||||||
|
@ -432,9 +438,9 @@ class Module(ModuleManager.BaseModule):
|
||||||
modified = self._modified(len(self._flat_unique(commits,
|
modified = self._modified(len(self._flat_unique(commits,
|
||||||
"modified")))
|
"modified")))
|
||||||
|
|
||||||
outputs.append("[%s/%s/%s files] %s pushed %d commits to %s - %s"
|
outputs.append("[%s/%s/%s files] %s %spushed %d commits to %s - %s"
|
||||||
% (added, removed, modified, pusher, len(data["commits"]),
|
% (added, removed, modified, pusher, forced,
|
||||||
branch, url))
|
len(data["commits"]), branch, url))
|
||||||
|
|
||||||
return outputs
|
return outputs
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue