mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
There are several common reoccurring issues that sometimes cause GitHub Action workflows to fail (connection timeouts to WordPress.org or the Docker container registry, `npm install` failures, Chromium issues, etc.). Except when there are service level outages, most of these issues can be resolved by simply rerunning the workflow. This introduces a new step within each of Core’s GitHub Action workflows that attempts to rerun the failed jobs within the workflow that encountered a failure if they are running for the first time. Since a workflow is not allowed to restart itself, a new `failed-workflow.yml` callable workflow is being introduced. Other related adjustments in this changeset: - The `actions/github-script` 3rd-party action is also now updated to the latest version (v6.2.0). - A new secret, `GHA_WORKFLOW_DISPATCH`, has been introduced. This will replace the current one in use (`GHA_OLD_BRANCH_DISPATCH`) with a less specific name. Props jorbin, desrosj. Fixes #56407. git-svn-id: https://develop.svn.wordpress.org/trunk@53947 602fd350-edb4-49c9-b593-d223f7449a82
94 lines
3.7 KiB
YAML
94 lines
3.7 KiB
YAML
name: Test old branches
|
|
|
|
on:
|
|
# Verify the workflow is successful when this file is updated.
|
|
push:
|
|
branches:
|
|
- trunk
|
|
paths:
|
|
- '.github/workflows/test-old-branches.yml'
|
|
# Run twice a month on the 1st and 15th at 00:00 UTC.
|
|
schedule:
|
|
- cron: '0 0 1 * *'
|
|
- cron: '0 0 15 * *'
|
|
|
|
jobs:
|
|
dispatch-workflows-for-old-branches:
|
|
name: ${{ matrix.workflow }} for ${{ matrix.branch }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
workflow: [
|
|
'coding-standards.yml',
|
|
'javascript-tests.yml',
|
|
'phpunit-tests.yml',
|
|
'test-npm.yml'
|
|
]
|
|
branch: [
|
|
'6.0',
|
|
'5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0',
|
|
'4.9', '4.8', '4.7', '4.6', '4.5', '4.4', '4.3', '4.2', '4.1', '4.0',
|
|
'3.9', '3.8', '3.7'
|
|
]
|
|
include:
|
|
# PHP Compatibility testing was introduced in 5.5.
|
|
- branch: '6.0'
|
|
workflow: 'php-compatibility.yml'
|
|
- branch: '5.9'
|
|
workflow: 'php-compatibility.yml'
|
|
- branch: '5.8'
|
|
workflow: 'php-compatibility.yml'
|
|
- branch: '5.7'
|
|
workflow: 'php-compatibility.yml'
|
|
- branch: '5.6'
|
|
workflow: 'php-compatibility.yml'
|
|
- branch: '5.5'
|
|
workflow: 'php-compatibility.yml'
|
|
|
|
# End-to-end testing was introduced in 5.3 but was later removed as there were no meaningful assertions.
|
|
# Starting in 5.8 with #52905, some additional tests with real assertions were introduced.
|
|
# Branches 5.8 and newer should be tested to confirm no regressions are introduced.
|
|
- branch: '6.0'
|
|
workflow: 'end-to-end-tests.yml'
|
|
- branch: '5.9'
|
|
workflow: 'end-to-end-tests.yml'
|
|
- branch: '5.8'
|
|
workflow: 'end-to-end-tests.yml'
|
|
exclude:
|
|
# Coding standards and JavaScript testing did not take place in 3.7.
|
|
- branch: '3.7'
|
|
workflow: 'coding-standards.yml'
|
|
- branch: '3.7'
|
|
workflow: 'javascript-tests.yml'
|
|
|
|
# Run all branches monthly, but only the currently supported one twice per month.
|
|
steps:
|
|
- name: Dispatch workflow run
|
|
uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v6.2.0
|
|
if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6.0' }}
|
|
with:
|
|
github-token: ${{ secrets.GHA_WORKFLOW_DISPATCH }}
|
|
script: |
|
|
github.rest.actions.createWorkflowDispatch({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
workflow_id: '${{ matrix.workflow }}',
|
|
ref: '${{ matrix.branch }}'
|
|
});
|
|
|
|
slack-notifications:
|
|
name: Slack Notifications
|
|
uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk
|
|
needs: [ dispatch-workflows-for-old-branches ]
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }}
|
|
with:
|
|
calling_status: ${{ needs.dispatch-workflows-for-old-branches.result == 'success' && 'success' || needs.dispatch-workflows-for-old-branches.result == 'cancelled' && 'cancelled' || 'failure' }}
|
|
secrets:
|
|
SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }}
|
|
SLACK_GHA_CANCELLED_WEBHOOK: ${{ secrets.SLACK_GHA_CANCELLED_WEBHOOK }}
|
|
SLACK_GHA_FIXED_WEBHOOK: ${{ secrets.SLACK_GHA_FIXED_WEBHOOK }}
|
|
SLACK_GHA_FAILURE_WEBHOOK: ${{ secrets.SLACK_GHA_FAILURE_WEBHOOK }}
|