Make WordPress Core


Ignore:
Timestamp:
10/20/2021 07:25:12 PM (3 years ago)
Author:
desrosj
Message:

Build/Test Tools: Pass required secrets to the Slack notifications workflow.

Secrets are not available within callable workflows by default. They must be defined within the callable workflow, and passed from the calling workflow.

Follow up to [51921-51922].

See #53363.

File:
1 edited

Legend:

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

    r51922 r51924  
    88on:
    99  workflow_call:
     10    secrets:
     11      SLACK_GHA_SUCCESS_WEBHOOK:
     12        description: 'The Slack webhook URL for a successful build.'
     13        required: true
     14      SLACK_GHA_CANCELLED_WEBHOOK:
     15        description: 'The Slack webhook URL for a cancelled build.'
     16        required: true
     17      SLACK_GHA_FIXED_WEBHOOK:
     18        description: 'The Slack webhook URL for a fixed build.'
     19        required: true
     20      SLACK_GHA_FAILURE_WEBHOOK:
     21        description: 'The Slack webhook URL for a failed build.'
     22        required: true
    1023
    1124jobs:
Note: See TracChangeset for help on using the changeset viewer.