0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

modules/web_hook: Switch to circle emoji for CI status reaction.

This commit is contained in:
Jason Volk 2019-12-22 02:35:51 -08:00
parent 1adccbecac
commit c776229112

View file

@ -1111,11 +1111,11 @@ github_handle__status(std::ostream &out,
break;
case "pending"_:
m::annotate(_webhook_room, _webhook_user, push_event_id, "🟨");
m::annotate(_webhook_room, _webhook_user, push_event_id, "🟡");
break;
case "success"_:
m::annotate(_webhook_room, _webhook_user, push_event_id, "🟩");
m::annotate(_webhook_room, _webhook_user, push_event_id, "🟢");
break;
}