71
71
asset_path : ${{ steps.create_packages.outputs.deb_package }}
72
72
asset_name : ${{ steps.create_packages.outputs.deb_package_name }}
73
73
asset_content_type : application/x-deb
74
+ - name : Slack notification of CI status
75
+ uses : rtCamp/action-slack-notify@v2
76
+ env :
77
+ SLACK_CHANNEL : team_open_source
78
+ SLACK_COLOR : ${{ job.status }}
79
+ SLACK_USERNAME : Github Actions CI bot
80
+ SLACK_WEBHOOK : ${{ secrets.SLACK_WEBHOOK }}
74
81
75
82
ubuntu-18_04-package :
76
83
runs-on : ubuntu-18.04
@@ -141,6 +148,13 @@ jobs:
141
148
asset_path : ${{ steps.create_packages.outputs.deb_package }}
142
149
asset_name : ${{ steps.create_packages.outputs.deb_package_name }}
143
150
asset_content_type : application/x-deb
151
+ - name : Slack notification of CI status
152
+ uses : rtCamp/action-slack-notify@v2
153
+ env :
154
+ SLACK_CHANNEL : team_open_source
155
+ SLACK_COLOR : ${{ job.status }}
156
+ SLACK_USERNAME : Github Actions CI bot
157
+ SLACK_WEBHOOK : ${{ secrets.SLACK_WEBHOOK }}
144
158
145
159
146
160
homebrew-pr :
@@ -160,6 +174,13 @@ jobs:
160
174
brew bump-formula-pr --tag "$RELEASE_TAG" --revision "$GITHUB_SHA" cbmc
161
175
env :
162
176
HOMEBREW_GITHUB_API_TOKEN : ${{ secrets.DB_CI_CPROVER_ACCESS_TOKEN }}
177
+ - name : Slack notification of CI status
178
+ uses : rtCamp/action-slack-notify@v2
179
+ env :
180
+ SLACK_CHANNEL : team_open_source
181
+ SLACK_COLOR : ${{ job.status }}
182
+ SLACK_USERNAME : Github Actions CI bot
183
+ SLACK_WEBHOOK : ${{ secrets.SLACK_WEBHOOK }}
163
184
164
185
windows-msi-package :
165
186
runs-on : windows-2019
@@ -248,6 +269,13 @@ jobs:
248
269
asset_path : ${{ steps.create_packages.outputs.msi_installer }}
249
270
asset_name : ${{ steps.create_packages.outputs.msi_name }}
250
271
asset_content_type : application/x-msi
272
+ - name : Slack notification of CI status
273
+ uses : rtCamp/action-slack-notify@v2
274
+ env :
275
+ SLACK_CHANNEL : team_open_source
276
+ SLACK_COLOR : ${{ job.status }}
277
+ SLACK_USERNAME : Github Actions CI bot
278
+ SLACK_WEBHOOK : ${{ secrets.SLACK_WEBHOOK }}
251
279
252
280
push-docker-image-dockerhub :
253
281
runs-on : ubuntu-20.04
@@ -271,3 +299,10 @@ jobs:
271
299
# For security reasons remove stored login credentials from
272
300
# configuration file they are stored at by docker login.
273
301
docker logout
302
+ - name : Slack notification of CI status
303
+ uses : rtCamp/action-slack-notify@v2
304
+ env :
305
+ SLACK_CHANNEL : team_open_source
306
+ SLACK_COLOR : ${{ job.status }}
307
+ SLACK_USERNAME : Github Actions CI bot
308
+ SLACK_WEBHOOK : ${{ secrets.SLACK_WEBHOOK }}
0 commit comments