Skip to content

Commit 2902441

Browse files
authored
CI - No discord ping for skipped checks (#3718)
# Description of Changes I thought this was covered by the `NEUTRAL` case, but apparently `SKIPPED` is separate. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing We'll see when it merges 🤷 Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
1 parent 7df8719 commit 2902441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/discord-posts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
--json 'workflow,state,name' |
3737
jq '.[]
3838
| select(.workflow != "Discord notifications")
39-
| select(.state != "SUCCESS" and .state != "NEUTRAL")
39+
| select(.state != "SUCCESS" and .state != "NEUTRAL" and .state != "SKIPPED")
4040
' |
4141
jq -r '"\(.workflow) / \(.name): \(.state)"'
4242
)"

0 commit comments

Comments
 (0)