File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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:"
Original file line number Diff line number Diff 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')"
You can’t perform that action at this time.
0 commit comments