Changeset 53077 for trunk/.github/workflows/slack-notifications.yml
- Timestamp:
- 04/05/2022 01:18:53 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/slack-notifications.yml
r52233 r53077 95 95 page: 2, 96 96 }); 97 return previous_runs.data.workflow_runs[0].conclusion; 97 98 if ( previous_runs.data.total_count > 0 ) { 99 return previous_runs.data.workflow_runs[0].conclusion; 100 } else { 101 // Use failure so all first time runs for a branch or tag are reported to Slack. 102 return 'failure'; 103 } 98 104 99 105 - name: Store previous conclusion as an output
Note: See TracChangeset
for help on using the changeset viewer.