Changeset 52233 for trunk/.github/workflows/slack-notifications.yml
- Timestamp:
- 11/23/2021 05:40:00 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/slack-notifications.yml
r52183 r52233 62 62 name: Prepare notifications 63 63 runs-on: ubuntu-latest 64 timeout-minutes: 5 64 65 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event.workflow_run.event != 'pull_request' }} 65 66 outputs: … … 130 131 name: Failure notifications 131 132 runs-on: ubuntu-latest 133 timeout-minutes: 5 132 134 needs: [ prepare ] 133 135 if: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'failure' || inputs.calling_status == 'failure' || failure() }} … … 145 147 name: Fixed notifications 146 148 runs-on: ubuntu-latest 149 timeout-minutes: 5 147 150 needs: [ prepare ] 148 151 if: ${{ needs.prepare.outputs.previous_conclusion == 'failure' && ( github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' || inputs.calling_status == 'success' ) && success() }} … … 160 163 name: Success notifications 161 164 runs-on: ubuntu-latest 165 timeout-minutes: 5 162 166 needs: [ prepare ] 163 167 if: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' || inputs.calling_status == 'success' && success() }} … … 175 179 name: Cancelled notifications 176 180 runs-on: ubuntu-latest 181 timeout-minutes: 5 177 182 needs: [ prepare ] 178 183 if: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'cancelled' || inputs.calling_status == 'cancelled' || cancelled() }}
Note: See TracChangeset
for help on using the changeset viewer.