File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -179,16 +179,25 @@ jobs:
179
179
svacer_import_password : " ${{ secrets.SVACER_IMPORT_PASSWORD }}"
180
180
svace_analyze_ssh_private_key : " ${{ secrets.SVACE_ANALYZE_SSH_PRIVATE_KEY }}"
181
181
182
+ notify :
183
+ name : Notify Loop
184
+ runs-on : ubuntu-latest
185
+ needs :
186
+ - set_vars
187
+ - dev_setup_build
188
+ - analyze_build
189
+ if : always()
190
+ steps :
182
191
- name : Send results to Loop
183
- if : always()
184
192
run : |
185
- if [ "${{ steps.analyze.outcome }}" == "success" ]; then
193
+ DATE=$(date '+%Y-%m-%d')
194
+ if [ "${{ needs.analyze_build.result }}" == "success" ]; then
186
195
STATUS=":white_check_mark: SUCCESS!"
187
196
else
188
197
STATUS=":x: FAIL!"
189
198
fi
190
- SUMMARY ="
191
- ### :gear: **DVP $DATE Weekly analyze **
199
+ MESSAGE ="
200
+ ### :gear: **DVP $DATE Weekly Svace Analyze Report **
192
201
193
202
**Branch:** \`$GITHUB_REF_NAME\`
194
203
**Status: ${STATUS}**
You can’t perform that action at this time.
0 commit comments