Changeset 56827
- Timestamp:
- 10/11/2023 12:15:18 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/slack-notifications.yml
r56780 r56827 76 76 } 77 77 78 // When a workflow has been restarted to fix a failure, check the previous run attempt. 79 if ( workflow_run.data.run_attempt > 1 ) { 78 // When a workflow has been restarted, check the previous run attempt. Because workflows are automatically 79 // restarted once and a failure on the first run is not reported, failures on the second run should not be 80 // considered. 81 if ( workflow_run.data.run_attempt > 2 ) { 80 82 const previous_run = await github.rest.actions.getWorkflowRunAttempt({ 81 83 owner: context.repo.owner,
Note: See TracChangeset
for help on using the changeset viewer.