Make WordPress Core

Changeset 58791


Ignore:
Timestamp:
07/23/2024 07:15:12 PM (21 months 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.2 branch.

These were mistakenly removed in [58302].

See #61733, #61213.

File:
1 edited

Legend:

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

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