Make WordPress Core

Changeset 60053


Ignore:
Timestamp:
03/19/2025 01:17:06 PM (4 months ago)
Author:
desrosj
Message:

Build/Test Tools: Increase timeout value for Slack message jobs.

Because of how dependent jobs and queuing works in GitHub Actions, it’s common for workflows to be completed with the exception of sending Slack notifications.

“The waiting is the hardest part”, and occasionally these jobs hit the 10 minute timeout value before their turn comes up.

See #62221.

File:
1 edited

Legend:

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

    r59922 r60053  
    166166    permissions: {}
    167167    runs-on: ubuntu-24.04
    168     timeout-minutes: 10
     168    timeout-minutes: 20
    169169    needs: [ prepare ]
    170170    if: ${{ needs.prepare.outputs.previous_conclusion != 'first-failure' && inputs.calling_status == 'failure' || failure() }}
     
    183183    permissions: {}
    184184    runs-on: ubuntu-24.04
    185     timeout-minutes: 10
     185    timeout-minutes: 20
    186186    needs: [ prepare ]
    187187    if: ${{ contains( fromJson( '["failure", "cancelled", "none"]' ), needs.prepare.outputs.previous_conclusion ) && inputs.calling_status == 'success' && success() }}
     
    200200    permissions: {}
    201201    runs-on: ubuntu-24.04
    202     timeout-minutes: 10
     202    timeout-minutes: 20
    203203    needs: [ prepare ]
    204204    if: ${{ inputs.calling_status == 'success' && success() }}
     
    217217    permissions: {}
    218218    runs-on: ubuntu-24.04
    219     timeout-minutes: 10
     219    timeout-minutes: 20
    220220    needs: [ prepare ]
    221221    if: ${{ inputs.calling_status == 'cancelled' || cancelled() }}
Note: See TracChangeset for help on using the changeset viewer.