Make WordPress Core


Ignore:
Timestamp:
07/23/2024 07:16:11 PM (8 weeks ago)
Author:
desrosj
Message:

Build/Test Tools: Re-add Slack notices for E2E workflow.

This re-adds Slack notices for the E2E workflow in the 6.0 branch.

These were mistakenly removed in [58357].

See #61733, #61213.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/6.0/.github/workflows/end-to-end-tests.yml

    r58357 r58793  
    5151      install-gutenberg: false
    5252
     53  slack-notifications:
     54    name: Slack Notifications
     55    uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk
     56    permissions:
     57      actions: read
     58      contents: read
     59    needs: [ e2e-tests ]
     60    if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }}
     61    with:
     62      calling_status: ${{ contains( needs.*.result, 'cancelled' ) && 'cancelled' || contains( needs.*.result, 'failure' ) && 'failure' || 'success' }}
     63    secrets:
     64      SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }}
     65      SLACK_GHA_CANCELLED_WEBHOOK: ${{ secrets.SLACK_GHA_CANCELLED_WEBHOOK }}
     66      SLACK_GHA_FIXED_WEBHOOK: ${{ secrets.SLACK_GHA_FIXED_WEBHOOK }}
     67      SLACK_GHA_FAILURE_WEBHOOK: ${{ secrets.SLACK_GHA_FAILURE_WEBHOOK }}
     68
    5369  failed-workflow:
    5470    name: Failed workflow tasks
Note: See TracChangeset for help on using the changeset viewer.