There was an error while loading. Please reload this page.
1 parent da69a37 commit ad35eacCopy full SHA for ad35eac
.github/workflows/qemu-image-build.yml
@@ -144,6 +144,16 @@ jobs:
144
docker tag "postgres:$IMAGE_TAG" "$REGISTRY/$REPOSITORY:$IMAGE_TAG"
145
docker push "$REGISTRY/$REPOSITORY:$IMAGE_TAG"
146
147
+ - name: Slack Notification on Failure
148
+ if: ${{ failure() }}
149
+ uses: rtCamp/action-slack-notify@v2
150
+ env:
151
+ SLACK_WEBHOOK: ${{ secrets.SLACK_NOTIFICATIONS_WEBHOOK }}
152
+ SLACK_USERNAME: 'gha-failures-notifier'
153
+ SLACK_COLOR: 'danger'
154
+ SLACK_MESSAGE: 'Building Postgres QEMU artifact failed'
155
+ SLACK_FOOTER: ''
156
+b
157
- name: Cleanup resources after build
158
if: ${{ always() }}
159
run: |
0 commit comments