Changeset 52233
- Timestamp:
- 11/23/2021 05:40:00 PM (3 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r52220 r52233 59 59 name: PHP coding standards 60 60 runs-on: ubuntu-latest 61 timeout-minutes: 20 61 62 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 62 63 … … 124 125 name: JavaScript coding standards 125 126 runs-on: ubuntu-latest 127 timeout-minutes: 20 126 128 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 127 129 env: -
trunk/.github/workflows/end-to-end-tests.yml
r52183 r52233 48 48 name: E2E Tests 49 49 runs-on: ubuntu-latest 50 timeout-minutes: 20 50 51 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 51 52 -
trunk/.github/workflows/javascript-tests.yml
r52183 r52233 52 52 name: QUnit Tests 53 53 runs-on: ubuntu-latest 54 timeout-minutes: 20 54 55 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 55 56 -
trunk/.github/workflows/php-compatibility.yml
r52220 r52233 53 53 name: Check PHP compatibility 54 54 runs-on: ubuntu-latest 55 timeout-minutes: 20 55 56 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 56 57 -
trunk/.github/workflows/phpunit-tests.yml
r52183 r52233 61 61 name: ${{ matrix.php }}${{ matrix.multisite && ' multisite' || '' }}${{ matrix.split_slow && ' slow tests' || '' }}${{ matrix.memcached && ' with memcached' || '' }} on ${{ matrix.os }} 62 62 runs-on: ${{ matrix.os }} 63 timeout-minutes: 20 63 64 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 64 65 strategy: -
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() }} -
trunk/.github/workflows/test-coverage.yml
r52183 r52233 48 48 name: ${{ matrix.multisite && 'Multisite' || 'Single site' }} report 49 49 runs-on: ubuntu-latest 50 timeout-minutes: 120 50 51 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 51 52 strategy: -
trunk/.github/workflows/test-npm.yml
r52183 r52233 51 51 name: Test NPM on ${{ matrix.os }} 52 52 runs-on: ${{ matrix.os }} 53 timeout-minutes: 20 53 54 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 54 55 strategy: … … 114 115 name: Test NPM on MacOS 115 116 runs-on: macos-latest 117 timeout-minutes: 20 116 118 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 117 119 steps: -
trunk/.github/workflows/test-old-branches.yml
r52183 r52233 17 17 name: ${{ matrix.workflow }} for ${{ matrix.branch }} 18 18 runs-on: ubuntu-latest 19 timeout-minutes: 20 19 20 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 20 21 strategy: -
trunk/.github/workflows/welcome-new-contributors.yml
r51535 r52233 9 9 post-welcome-message: 10 10 runs-on: ubuntu-latest 11 timeout-minutes: 5 11 12 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 12 13
Note: See TracChangeset
for help on using the changeset viewer.