0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

only print job status for some status values

This commit is contained in:
Siddharth Agrawal 2022-10-18 17:59:58 +05:30
parent a86e5876eb
commit c99a1c5fb5

View file

@ -30,10 +30,10 @@ def get_resp_items(resp):
def get_status_text(status):
if status == "success":
return COLORS.FG.green + "" + COLORS.reset
elif status in ("running", "not_run", "retried", "queued"):
return COLORS.FG.yellow + "·" + COLORS.reset
elif status in ("running", "not_run", "retried"):
return COLORS.FG.yellow + "" + COLORS.reset
else:
return COLORS.FG.red + "˟" + COLORS.reset
return COLORS.FG.red + "" + COLORS.reset
if not org_slug or len(args) != 3:
@ -64,8 +64,10 @@ jobs = get_resp_items(response)
for job in jobs:
status = job["status"]
name = job["name"]
project_slug = job["project_slug"]
job_number = job["job_number"]
url = f"https://circleci.com/{project_slug}/{job_number}"
print("{} {:<50} {}".format(get_status_text(status), name, url))
if status in ("success", "running", "failed", "retried", "timedout",
"on_hold", "canceled", "terminated_unknown"):
name = job["name"]
project_slug = job["project_slug"]
job_number = job["job_number"]
url = f"https://circleci.com/{project_slug}/{job_number}"
print("{} {:<50} {}".format(get_status_text(status), name, url))