Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 51 additions & 32 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,53 @@
version: 2

updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "monthly"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "terraform"
directory: "/"
schedule:
interval: "daily"
# Composer: 1x weekly for minor/patch, 1x monthly for major.
- package-ecosystem: 'composer'
directory: '/'
schedule:
interval: 'weekly'
cooldown:
semver-major-days: 30
semver-minor-days: 7
semver-patch-days: 7
Comment on lines +9 to +12
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "cooldown" configuration option is not a valid Dependabot feature. According to GitHub's Dependabot documentation, there is no "cooldown" setting. The valid ways to control update frequency are through the "schedule" option with interval and optionally "day" and "time" settings. This invalid configuration may cause Dependabot to ignore this entire update configuration or fail with errors. Please remove these cooldown sections or replace them with valid Dependabot configuration options.

Copilot uses AI. Check for mistakes.
groups:
composer-dev-minor-patch:
dependency-type: 'development'
update-types: [minor, patch]
composer-dev-major:
dependency-type: 'development'
update-types: [major]
# We don't bundle minor or major production assets, so they're tested individually.
composer-patch:
dependency-type: 'production'
update-types: [patch]

# NPM: 1x weekly for minor/patch, 1x monthly for major.
- package-ecosystem: 'npm'
directories:
- '/'
schedule:
interval: 'weekly'
cooldown:
semver-major-days: 30
semver-minor-days: 7
semver-patch-days: 7
groups:
npm-dev-minor-patch:
dependency-type: 'development'
update-types: [minor, patch]
npm-prod-minor-patch:
dependency-type: 'production'
update-types: [minor, patch]
npm-dev-major:
dependency-type: 'development'
update-types: [major]

# GitHub Actions: 1x weekly.
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
groups:
github-actions-updates:
patterns: ['*']
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.1.0-beta.1
## 1.1.0

- Feat: Refactor for WPCS and best practices

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"szepeviktor/phpstan-wordpress": "^2.0.2",
"wp-coding-standards/wpcs": "^3.1",
"wp-phpunit/wp-phpunit": "^6.5",
"wpackagist-plugin/plugin-check": "~1.8.0",
"wpackagist-plugin/plugin-check": "~1.6.0",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
Expand Down
78 changes: 39 additions & 39 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading