Make WordPress Core


Ignore:
Timestamp:
10/20/2021 02:40:47 PM (5 years ago)
Author:
desrosj
Message:

Build/Test Tools: Modify the Slack notifications workflow to be a reusable one.

The ability to reuse workflow files within GitHub Action workflows was recently added and allows for less code duplication.

In the context of WordPress Core, this also eliminates the need for an additional “Slack Notifications” workflow to run for every completed workflow.

See #53363.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/test-npm.yml

    r51535 r51921  
    155155      - name: Ensure version-controlled files are not modified or deleted during building and cleaning
    156156        run: git diff --exit-code
     157
     158  slack-notifications:
     159    name: Slack Notifications
     160    uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@master
     161    needs: [ test-npm, test-npm-macos ]
     162    if: ${{ always() }}
Note: See TracChangeset for help on using the changeset viewer.