diff --git a/.github/workflows/update_protos.yml b/.github/workflows/update_protos.yml index 2352b15825f..b9124808036 100644 --- a/.github/workflows/update_protos.yml +++ b/.github/workflows/update_protos.yml @@ -46,3 +46,17 @@ jobs: 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 assignees: viamrobotics/sdk-netcode reviewers: viamrobotics/sdk-netcode + + - name: Notify slack of failure + uses: slackapi/slack-github-action@v1.24.0 + if: ${{ failure() }} + with: + payload: | + { + "text": "Flutter SDK update protos job has failed", + "username": "Flutter SDK", + "icon_url": "https://media.tenor.com/bZMubztJxGkAAAAe/charlie-brown-walking-charlie-brown.png" + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_TEAM_SDK_WEBHOOK_URL }} +