blob: 363d9e9fc090391e94947f16a55672d8498fa423 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -eu
message="$JOB ($RUN): $RESULT
https://ci.tojo.tokyo/jobs/$JOB/$RUN"
if [ "$RESULT" != "$LAST_RESULT" ]; then
message="@tojoqk@mastodon.tojo.tokyo
$message"
fi
toot post -v unlisted "$message"
|