We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents deaa5ee + 2890f74 commit 0229307Copy full SHA for 0229307
.github/workflows/release-packages.yaml
@@ -288,12 +288,14 @@ jobs:
288
asset_name: ${{ steps.create_packages.outputs.msi_name }}
289
asset_content_type: application/x-msi
290
- name: Slack notification of CI status
291
- uses: rtCamp/action-slack-notify@v2
+ if: success() || failure()
292
env:
293
SLACK_CHANNEL: team_open_source
294
SLACK_COLOR: ${{ job.status }}
295
SLACK_USERNAME: Github Actions CI bot
296
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
297
+ SLACK_MESSAGE: "${{ job.status == 'success' && 'Windows package built and uploaded successfully' || 'Windows package build failed' }}"
298
+ run: go run scripts/slack_notification_action.go
299
300
push-docker-image-dockerhub:
301
runs-on: ubuntu-20.04
0 commit comments