mirror of
git://develop.git.wordpress.org/
synced 2025-04-21 20:51:55 +02:00
Some checks failed
Cleanup Pull Requests / Clean up pull requests (push) Waiting to run
Coding Standards / PHP coding standards (push) Waiting to run
Coding Standards / JavaScript coding standards (push) Waiting to run
Coding Standards / Slack Notifications (push) Blocked by required conditions
Coding Standards / Failed workflow tasks (push) Blocked by required conditions
End-to-end Tests / Test with SCRIPT_DEBUG disabled (push) Waiting to run
End-to-end Tests / Test with SCRIPT_DEBUG enabled (push) Waiting to run
End-to-end Tests / Slack Notifications (push) Blocked by required conditions
End-to-end Tests / Failed workflow tasks (push) Blocked by required conditions
JavaScript Tests / QUnit Tests (push) Waiting to run
JavaScript Tests / Slack Notifications (push) Blocked by required conditions
JavaScript Tests / Failed workflow tasks (push) Blocked by required conditions
Performance Tests / Determine Matrix (push) Waiting to run
Performance Tests / ${{ matrix.multisite && 'Multisite' || 'Single Site' }} ${{ matrix.memcached && 'Memcached' || 'Default' }} (push) Blocked by required conditions
Performance Tests / Compare (push) Blocked by required conditions
Performance Tests / Slack Notifications (push) Blocked by required conditions
Performance Tests / Failed workflow tasks (push) Blocked by required conditions
PHP Compatibility / Check PHP compatibility (push) Waiting to run
PHP Compatibility / Slack Notifications (push) Blocked by required conditions
PHP Compatibility / Failed workflow tasks (push) Blocked by required conditions
PHPUnit Tests / PHP 7.2 (push) Waiting to run
PHPUnit Tests / PHP 7.3 (push) Waiting to run
PHPUnit Tests / PHP 7.4 (push) Waiting to run
PHPUnit Tests / PHP 8.0 (push) Waiting to run
PHPUnit Tests / PHP 8.1 (push) Waiting to run
PHPUnit Tests / PHP 8.2 (push) Waiting to run
PHPUnit Tests / PHP 8.3 (push) Waiting to run
PHPUnit Tests / PHP 8.4 (push) Waiting to run
PHPUnit Tests / html-api-html5lib-tests (push) Waiting to run
PHPUnit Tests / Slack Notifications (push) Blocked by required conditions
PHPUnit Tests / Failed workflow tasks (push) Blocked by required conditions
Test Build Processes / Core running from build (push) Waiting to run
Test Build Processes / Core running from src (push) Waiting to run
Test Build Processes / Gutenberg running from build (push) Waiting to run
Test Build Processes / Gutenberg running from src (push) Waiting to run
Test Build Processes / Slack Notifications (push) Blocked by required conditions
Test Build Processes / Failed workflow tasks (push) Blocked by required conditions
Upgrade Develop Version Tests / Build (push) Has been cancelled
Lint GitHub Actions workflow files / Lint GitHub Action files (push) Has been cancelled
Upgrade Develop Version Tests / Upgrade from 4.9 (push) Has been cancelled
Upgrade Develop Version Tests / Upgrade from 6.5 (push) Has been cancelled
Upgrade Develop Version Tests / Upgrade from 6.6 (push) Has been cancelled
Upgrade Develop Version Tests / Upgrade from 6.7 (push) Has been cancelled
Upgrade Develop Version Tests / Slack Notifications (push) Has been cancelled
Upgrade Develop Version Tests / Failed workflow tasks (push) Has been cancelled
This expands the use of Dependabot to also manage npm dependencies by configuring several groups of related packages. After [59983], pull requests for the majority of these updates can now be staged without encountering test failures. Props joemcgill, peterwilsoncc, swissspidy, johnbillion. See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@60066 602fd350-edb4-49c9-b593-d223f7449a82
130 lines
3.6 KiB
YAML
130 lines
3.6 KiB
YAML
# Configure Dependabot scanning.
|
|
version: 2
|
|
|
|
updates:
|
|
# Check for updates to GitHub Actions.
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
open-pull-requests-limit: 10
|
|
groups:
|
|
github-actions:
|
|
patterns:
|
|
- "*"
|
|
|
|
# Check for updates to Composer packages.
|
|
- package-ecosystem: "composer"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
open-pull-requests-limit: 10
|
|
ignore:
|
|
# These dependencies do not currently need to be managed with Dependabot.
|
|
- dependency-name: "squizlabs/php_codesniffer"
|
|
- dependency-name: "wp-coding-standards/wpcs"
|
|
- dependency-name: "phpcompatibility/php-compatibility"
|
|
- dependency-name: "yoast/phpunit-polyfills"
|
|
groups:
|
|
composer-packages:
|
|
patterns:
|
|
- "composer/ca-bundle"
|
|
|
|
# Monitor some npm dependencies for updates in groups.
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
open-pull-requests-limit: 20
|
|
ignore:
|
|
- dependency-name: "@wordpress/*"
|
|
groups:
|
|
##
|
|
# Groups for updating devDependencies.
|
|
##
|
|
|
|
# Dependencies related to Playwright testing (E2E, performance).
|
|
tests-playwright:
|
|
patterns:
|
|
- "*playwright*"
|
|
# Dependencies related to JavaScript testing with QUnit.
|
|
tests-qunit:
|
|
patterns:
|
|
- "*qunit*"
|
|
- "sinon*"
|
|
# Dependencies related to CSS and SASS building and manilupating.
|
|
dev-css-sass:
|
|
patterns:
|
|
- "autoprefixer"
|
|
# postcss and css related dependencies.
|
|
- "*css*"
|
|
- "*sass"
|
|
# Dependencies related to the Webpack build process.
|
|
dev-webpack:
|
|
patterns:
|
|
- "*webpack*"
|
|
- "react-refresh"
|
|
- "source-map-loader"
|
|
# Dependencies related to the local Docker development environment.
|
|
dev-docker:
|
|
patterns:
|
|
- "dotenv*"
|
|
- "wait-on"
|
|
# Dependencies that do not fall into a specific grouping.
|
|
dev-miscellaneous:
|
|
patterns:
|
|
- "chalk"
|
|
- "check-node-version"
|
|
- "ink-docstrap"
|
|
- "install-changed"
|
|
- "matchdep"
|
|
- "uuid"
|
|
# Dependencies related to JavaScript minification.
|
|
dev-uglify:
|
|
patterns:
|
|
- "*uglify*"
|
|
# All GruntJS related dependencies that do not relate to another group.
|
|
dev-grunt:
|
|
patterns:
|
|
- "*grunt*"
|
|
|
|
##
|
|
# Groups for updating production dependencies.
|
|
##
|
|
|
|
# Dependencies related to jQuery and its ecosystem.
|
|
external-jquery:
|
|
patterns:
|
|
- "jquery*"
|
|
# Dependencies related to React and its ecosystem.
|
|
external-react:
|
|
patterns:
|
|
- "react*"
|
|
- "!react-refresh"
|
|
# Dependencies used for bundling polyfill libraries into WordPress.
|
|
external-polyfills:
|
|
patterns:
|
|
- "core-js-url-browser"
|
|
- "element-closest"
|
|
- "formdata-polyfill"
|
|
- "imagesloaded"
|
|
- "objectFitPolyfill"
|
|
- "polyfill-library"
|
|
- "regenerator-runtime"
|
|
- "whatwg-fetch"
|
|
- "wicg-inert"
|
|
# Dependencies related to the Masonry library.
|
|
external-masonry:
|
|
patterns:
|
|
- "masonry-layout"
|
|
# Dependencies that do not fall into a specific grouping.
|
|
external-miscellaneous:
|
|
patterns:
|
|
- "backbone"
|
|
- "clipboard"
|
|
- "hoverintent"
|
|
- "json2php"
|
|
- "lodash"
|
|
- "moment"
|
|
- "underscore"
|