Changeset 53466
- Timestamp:
- 06/05/2022 09:29:53 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/slack-notifications.yml
r53427 r53466 115 115 // Find the workflow run for the commit that immediately preceded this one. 116 116 for ( let i = 0; i < previous_runs.data.workflow_runs.length; i++ ) { 117 // Protects against false notifications when contributors use similar head_ref names. 118 if ( previous_runs.data.workflow_runs[ i ].event !== "push" ) { 119 continue; 120 } 121 117 122 if ( previous_runs.data.workflow_runs[ i ].run_number == workflow_run.data.run_number ) { 118 123 return previous_runs.data.workflow_runs[ i + 1 ].conclusion;
Note: See TracChangeset
for help on using the changeset viewer.