Skip to content

Commit 84b1da4

Browse files
authoredFeb 18, 2025··
RSDK-9904 - add job to notify slack of proto failure (#142)
1 parent c8c24b3 commit 84b1da4

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 

‎.github/workflows/update_protos.yml

+13
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,16 @@ jobs:
3232
body: This is an auto-generated PR to update proto definitions. Check the commits to see which repos and commits are responsible for the changes
3333
assignees: njooma,stuqdog
3434
reviewers: njooma,stuqdog
35+
36+
- name: Notify slack of failure
37+
uses: slackapi/slack-github-action@v1.24.0
38+
if: ${{ failure() }}
39+
with:
40+
payload: |
41+
{
42+
"text": "Rust-utils update protos job has failed",
43+
"username": "Rust-utils",
44+
"icon_url": "https://media.tenor.com/bZMubztJxGkAAAAe/charlie-brown-walking-charlie-brown.png"
45+
}
46+
env:
47+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_TEAM_SDK_WEBHOOK_URL }}

0 commit comments

Comments
 (0)
Please sign in to comment.