8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6375e9d commit 9fd4926Copy full SHA for 9fd4926
miss_islington/status_change.py
@@ -133,13 +133,15 @@ async def check_ci_status_and_approval(
133
)
134
if success:
135
emoji = "✅"
136
+ description = "success"
137
else:
138
emoji = "❌"
139
+ description = "failure"
140
print("leaving a comment")
141
await util.leave_comment(
142
gh,
143
pr_number=pr_number,
- message=f"{participants}: Status check is done, and it's a {result['state']} {emoji} .",
144
+ message=f"{participants}: Status check is done, and it's a {description} {emoji} .",
145
146
147
if util.pr_is_awaiting_merge(pr_for_commit["labels"]):
0 commit comments