Changeset 62162
- Timestamp:
- 03/27/2026 03:31:44 PM (14 hours ago)
- Location:
- branches/7.0
- Files:
-
- 30 deleted
- 16 edited
-
.env.example (modified) (1 diff)
-
.github/workflows/check-built-files.yml (modified) (1 diff)
-
.github/workflows/cleanup-pull-requests.yml (modified) (1 diff)
-
.github/workflows/coding-standards.yml (modified) (3 diffs)
-
.github/workflows/commit-built-file-changes.yml (deleted)
-
.github/workflows/end-to-end-tests.yml (modified) (2 diffs)
-
.github/workflows/failed-workflow.yml (deleted)
-
.github/workflows/install-testing.yml (deleted)
-
.github/workflows/javascript-tests.yml (modified) (2 diffs)
-
.github/workflows/javascript-type-checking.yml (modified) (2 diffs)
-
.github/workflows/local-docker-environment.yml (modified) (3 diffs)
-
.github/workflows/performance.yml (modified) (3 diffs)
-
.github/workflows/php-compatibility.yml (modified) (2 diffs)
-
.github/workflows/phpstan-static-analysis.yml (modified) (2 diffs)
-
.github/workflows/phpunit-tests.yml (modified) (6 diffs)
-
.github/workflows/reusable-build-package.yml (deleted)
-
.github/workflows/reusable-check-built-files.yml (deleted)
-
.github/workflows/reusable-cleanup-pull-requests.yml (deleted)
-
.github/workflows/reusable-coding-standards-javascript.yml (deleted)
-
.github/workflows/reusable-coding-standards-php.yml (deleted)
-
.github/workflows/reusable-end-to-end-tests.yml (deleted)
-
.github/workflows/reusable-javascript-tests.yml (deleted)
-
.github/workflows/reusable-javascript-type-checking-v1.yml (deleted)
-
.github/workflows/reusable-performance-report-v2.yml (deleted)
-
.github/workflows/reusable-performance-test-v2.yml (deleted)
-
.github/workflows/reusable-performance.yml (deleted)
-
.github/workflows/reusable-php-compatibility.yml (deleted)
-
.github/workflows/reusable-phpstan-static-analysis-v1.yml (deleted)
-
.github/workflows/reusable-phpunit-tests-v1.yml (deleted)
-
.github/workflows/reusable-phpunit-tests-v2.yml (deleted)
-
.github/workflows/reusable-phpunit-tests-v3.yml (deleted)
-
.github/workflows/reusable-support-json-reader-v1.yml (deleted)
-
.github/workflows/reusable-test-core-build-process.yml (deleted)
-
.github/workflows/reusable-test-gutenberg-build-process.yml (deleted)
-
.github/workflows/reusable-test-local-docker-environment-v1.yml (deleted)
-
.github/workflows/reusable-upgrade-testing.yml (deleted)
-
.github/workflows/reusable-workflow-lint.yml (deleted)
-
.github/workflows/slack-notifications.yml (deleted)
-
.github/workflows/test-and-zip-default-themes.yml (deleted)
-
.github/workflows/test-build-processes.yml (modified) (3 diffs)
-
.github/workflows/test-coverage.yml (deleted)
-
.github/workflows/test-old-branches.yml (deleted)
-
.github/workflows/upgrade-develop-testing.yml (modified) (4 diffs)
-
.github/workflows/upgrade-testing.yml (deleted)
-
.github/workflows/workflow-lint.yml (modified) (2 diffs)
-
docker-compose.yml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/7.0/.env.example
r61205 r62162 16 16 17 17 # The PHP version to use. Valid options are 'latest', and '{version}-fpm'. 18 LOCAL_PHP= latest18 LOCAL_PHP=8.5-fpm 19 19 20 20 # Whether or not to enable Xdebug. -
branches/7.0/.github/workflows/check-built-files.yml
r62095 r62162 50 50 name: Check built files 51 51 if: ${{ github.repository == 'wordpress/wordpress-develop' }} 52 uses: ./.github/workflows/reusable-check-built-files.yml52 uses: WordPress/wordpress-develop/.github/workflows/reusable-check-built-files.yml@trunk 53 53 permissions: 54 54 contents: read -
branches/7.0/.github/workflows/cleanup-pull-requests.yml
r59661 r62162 26 26 pull-requests: write 27 27 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 28 uses: ./.github/workflows/reusable-cleanup-pull-requests.yml28 uses: WordPress/wordpress-develop/.github/workflows/reusable-cleanup-pull-requests.yml@trunk -
branches/7.0/.github/workflows/coding-standards.yml
r61209 r62162 53 53 phpcs: 54 54 name: Coding standards 55 uses: ./.github/workflows/reusable-coding-standards-php.yml55 uses: WordPress/wordpress-develop/.github/workflows/reusable-coding-standards-php.yml@trunk 56 56 permissions: 57 57 contents: read … … 61 61 jshint: 62 62 name: Coding standards 63 uses: ./.github/workflows/reusable-coding-standards-javascript.yml63 uses: WordPress/wordpress-develop/.github/workflows/reusable-coding-standards-javascript.yml@trunk 64 64 permissions: 65 65 contents: read … … 68 68 slack-notifications: 69 69 name: Slack Notifications 70 uses: ./.github/workflows/slack-notifications.yml70 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 71 71 permissions: 72 72 actions: read -
branches/7.0/.github/workflows/end-to-end-tests.yml
r62095 r62162 60 60 e2e-tests: 61 61 name: ${{ matrix.label }} 62 uses: ./.github/workflows/reusable-end-to-end-tests.yml62 uses: WordPress/wordpress-develop/.github/workflows/reusable-end-to-end-tests.yml@trunk 63 63 permissions: 64 64 contents: read … … 75 75 slack-notifications: 76 76 name: Slack Notifications 77 uses: ./.github/workflows/slack-notifications.yml77 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 78 78 permissions: 79 79 actions: read -
branches/7.0/.github/workflows/javascript-tests.yml
r62095 r62162 56 56 test-js: 57 57 name: QUnit Tests 58 uses: ./.github/workflows/reusable-javascript-tests.yml58 uses: WordPress/wordpress-develop/.github/workflows/reusable-javascript-tests.yml@trunk 59 59 permissions: 60 60 contents: read … … 63 63 slack-notifications: 64 64 name: Slack Notifications 65 uses: ./.github/workflows/slack-notifications.yml65 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 66 66 permissions: 67 67 actions: read -
branches/7.0/.github/workflows/javascript-type-checking.yml
r62095 r62162 47 47 typecheck: 48 48 name: JavaScript type checking 49 uses: ./.github/workflows/reusable-javascript-type-checking-v1.yml49 uses: WordPress/wordpress-develop/.github/workflows/reusable-javascript-type-checking-v1.yml@trunk 50 50 permissions: 51 51 contents: read … … 54 54 slack-notifications: 55 55 name: Slack Notifications 56 uses: ./.github/workflows/slack-notifications.yml56 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 57 57 permissions: 58 58 actions: read -
branches/7.0/.github/workflows/local-docker-environment.yml
r62095 r62162 77 77 build-test-matrix: 78 78 name: Build Test Matrix 79 uses: ./.github/workflows/reusable-support-json-reader-v1.yml79 uses: WordPress/wordpress-develop/.github/workflows/reusable-support-json-reader-v1.yml@trunk 80 80 permissions: 81 81 contents: read … … 88 88 environment-tests-mysql: 89 89 name: PHP ${{ matrix.php }} 90 uses: ./.github/workflows/reusable-test-local-docker-environment-v1.yml90 uses: WordPress/wordpress-develop/.github/workflows/reusable-test-local-docker-environment-v1.yml@trunk 91 91 permissions: 92 92 contents: read … … 123 123 slack-notifications: 124 124 name: Slack Notifications 125 uses: ./.github/workflows/slack-notifications.yml125 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 126 126 permissions: 127 127 actions: read -
branches/7.0/.github/workflows/performance.yml
r62095 r62162 98 98 performance: 99 99 name: ${{ matrix.multisite && 'Multisite' || 'Single Site' }} ${{ matrix.memcached && 'Memcached' || 'Default' }} 100 uses: ./.github/workflows/reusable-performance-test-v2.yml100 uses: WordPress/wordpress-develop/.github/workflows/reusable-performance-test-v2.yml@trunk 101 101 needs: [ determine-matrix ] 102 102 permissions: … … 116 116 compare: 117 117 name: ${{ matrix.label }} 118 uses: ./.github/workflows/reusable-performance-report-v2.yml118 uses: WordPress/wordpress-develop/.github/workflows/reusable-performance-report-v2.yml@trunk 119 119 needs: [ determine-matrix, performance ] 120 120 permissions: … … 137 137 slack-notifications: 138 138 name: Slack Notifications 139 uses: ./.github/workflows/slack-notifications.yml139 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 140 140 permissions: 141 141 actions: read -
branches/7.0/.github/workflows/php-compatibility.yml
r61209 r62162 45 45 php-compatibility: 46 46 name: Check PHP compatibility 47 uses: ./.github/workflows/reusable-php-compatibility.yml47 uses: WordPress/wordpress-develop/.github/workflows/reusable-php-compatibility.yml@trunk 48 48 permissions: 49 49 contents: read … … 52 52 slack-notifications: 53 53 name: Slack Notifications 54 uses: ./.github/workflows/slack-notifications.yml54 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 55 55 permissions: 56 56 actions: read -
branches/7.0/.github/workflows/phpstan-static-analysis.yml
r61837 r62162 43 43 phpstan: 44 44 name: PHP static analysis 45 uses: ./.github/workflows/reusable-phpstan-static-analysis-v1.yml45 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpstan-static-analysis-v1.yml@trunk 46 46 permissions: 47 47 contents: read … … 50 50 slack-notifications: 51 51 name: Slack Notifications 52 uses: ./.github/workflows/slack-notifications.yml52 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 53 53 permissions: 54 54 actions: read -
branches/7.0/.github/workflows/phpunit-tests.yml
r61875 r62162 64 64 test-with-mysql: 65 65 name: PHP ${{ matrix.php }} 66 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml66 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 67 67 permissions: 68 68 contents: read … … 141 141 test-with-mariadb: 142 142 name: PHP ${{ matrix.php }} 143 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml143 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 144 144 permissions: 145 145 contents: read … … 193 193 test-innovation-releases: 194 194 name: PHP ${{ matrix.php }} 195 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml195 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 196 196 permissions: 197 197 contents: read … … 236 236 html-api-test-groups: 237 237 name: ${{ matrix.label }} 238 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml238 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 239 239 permissions: 240 240 contents: read … … 265 265 limited-matrix-for-forks: 266 266 name: PHP ${{ matrix.php }} 267 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml267 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 268 268 permissions: 269 269 contents: read … … 316 316 slack-notifications: 317 317 name: Slack Notifications 318 uses: ./.github/workflows/slack-notifications.yml318 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 319 319 permissions: 320 320 actions: read -
branches/7.0/.github/workflows/test-build-processes.yml
r62095 r62162 52 52 test-core-build-process: 53 53 name: Core running from ${{ matrix.directory }} 54 uses: ./.github/workflows/reusable-test-core-build-process.yml54 uses: WordPress/wordpress-develop/.github/workflows/reusable-test-core-build-process.yml@trunk 55 55 permissions: 56 56 contents: read … … 87 87 test-core-build-process-additional-os: 88 88 name: Core running from ${{ matrix.directory }} 89 uses: ./.github/workflows/reusable-test-core-build-process.yml89 uses: WordPress/wordpress-develop/.github/workflows/reusable-test-core-build-process.yml@trunk 90 90 permissions: 91 91 contents: read … … 102 102 slack-notifications: 103 103 name: Slack Notifications 104 uses: ./.github/workflows/slack-notifications.yml104 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 105 105 permissions: 106 106 actions: read -
branches/7.0/.github/workflows/upgrade-develop-testing.yml
r62042 r62162 47 47 build: 48 48 name: Build 49 uses: ./.github/workflows/reusable-build-package.yml49 uses: WordPress/wordpress-develop/.github/workflows/reusable-build-package.yml@trunk 50 50 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) }} 51 51 permissions: … … 63 63 upgrade-tests-develop: 64 64 name: Upgrade from ${{ matrix.wp }} 65 uses: ./.github/workflows/reusable-upgrade-testing.yml65 uses: WordPress/wordpress-develop/.github/workflows/reusable-upgrade-testing.yml@trunk 66 66 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 67 67 needs: [ build ] … … 90 90 upgrade-tests-develop-forks: 91 91 name: Upgrade from ${{ matrix.wp }} 92 uses: ./.github/workflows/reusable-upgrade-testing.yml92 uses: WordPress/wordpress-develop/.github/workflows/reusable-upgrade-testing.yml@trunk 93 93 if: ${{ github.repository != 'WordPress/wordpress-develop' }} 94 94 needs: [ build ] … … 115 115 slack-notifications: 116 116 name: Slack Notifications 117 uses: ./.github/workflows/slack-notifications.yml117 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 118 118 permissions: 119 119 actions: read -
branches/7.0/.github/workflows/workflow-lint.yml
r61209 r62162 33 33 lint: 34 34 name: Lint GitHub Action files 35 uses: ./.github/workflows/reusable-workflow-lint.yml35 uses: WordPress/wordpress-develop/.github/workflows/reusable-workflow-lint.yml@trunk 36 36 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 37 37 permissions: … … 42 42 slack-notifications: 43 43 name: Slack Notifications 44 uses: ./.github/workflows/slack-notifications.yml44 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 45 45 permissions: 46 46 actions: read -
branches/7.0/docker-compose.yml
r61459 r62162 33 33 ## 34 34 php: 35 image: wordpressdevelop/php:${LOCAL_PHP- latest}35 image: wordpressdevelop/php:${LOCAL_PHP-8.5-fpm} 36 36 37 37 networks: … … 65 65 ## 66 66 mysql: 67 image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION- latest}67 image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-8.4} 68 68 69 69 networks: … … 93 93 ## 94 94 cli: 95 image: wordpressdevelop/cli:${LOCAL_PHP- latest}95 image: wordpressdevelop/cli:${LOCAL_PHP-8.5-fpm} 96 96 97 97 networks:
Note: See TracChangeset
for help on using the changeset viewer.