blob: 3364aa67cb6ff303ed1aa9719a7c259cb05639d5 (
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"
|