Skip to content

Commit ed9b944

Browse files
authored
Merge branch 'master' into phoebe/procedure/http-metrics
2 parents 4e2aedb + 8552048 commit ed9b944

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ jobs:
512512
cargo run --features markdown-docs -p spacetimedb-cli > docs/docs/cli-reference.md
513513
pnpm format
514514
git status
515-
if git diff --exit-code HEAD; then
515+
if git diff --exit-code HEAD -- docs/docs/cli-reference.md; then
516516
echo "No docs changes detected"
517517
else
518518
echo "It looks like the CLI docs have changed:"

.github/workflows/discord-posts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ jobs:
6060
message+=$'\n'
6161
# This uses special Discord syntax for pinging a particular role.
6262
# Note the '&' - this is the difference between pinging a *role* and pinging a *person*.
63-
message+=" (cc <@&${MENTION_ON_FAILURE}>"
6463
if [[ -n "${author_discord_id}" ]]; then
65-
message+=" <@${author_discord_id}>"
64+
message+="<@${author_discord_id}> please investigate these failures."
6665
fi
67-
message+=")"
66+
message+=$'\n'
67+
message+="(cc <@&${MENTION_ON_FAILURE}> - Releases may be affected)"
6868
fi
6969
# Use `jq` to construct the json data blob in the format required by the webhook.
7070
data="$(jq --null-input --arg msg "$message" '.content=$msg')"

0 commit comments

Comments
 (0)