Make WordPress Core

Changeset 56406


Ignore:
Timestamp:
08/17/2023 05:34:06 PM (18 months ago)
Author:
desrosj
Message:

Build/Test Tools: Send a failure notice in Slack when a run fails to start.

This adds startup_failure to the list of conclusions that the Slack workflow looks for when determining whether to send a failure notice.

See #58867.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/slack-notifications.yml

    r56405 r56406  
    163163    timeout-minutes: 5
    164164    needs: [ prepare ]
    165     if: ${{ ( inputs.calling_status == 'failure' || failure() ) && needs.prepare.outputs.previous_conclusion != 'first-failure' }}
     165    if: ${{ ( contains( fromJson( '["failure", "startup_failure"]' ), needs.prepare.outputs.previous_conclusion ) || failure() ) && needs.prepare.outputs.previous_conclusion != 'first-failure' }}
    166166
    167167    steps:
Note: See TracChangeset for help on using the changeset viewer.