-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #207 from PHPCSStandards/feature/enable-and-config…
…ure-dependabot Add dependabot configuration file
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Dependabot configuration. | ||
# | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "composer" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 5 # Set to 0 to (temporarily) disable. | ||
versioning-strategy: widen | ||
allow: | ||
# Only allow updates to the dev dependencies as non-dev dependency | ||
# updates will generally need code changes in this package. | ||
- dependency-type: "development" | ||
ignore: | ||
# A new PHPUnit major will generally require a managed update, | ||
# so do not allow automated PRs. | ||
- dependency-name: "yoast/phpunit-polyfills" | ||
update-types: ["version-update:semver-major"] | ||
commit-message: | ||
prefix: "Composer:" | ||
include: "scope" | ||
labels: | ||
- "builds / deploys / releases" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 5 | ||
commit-message: | ||
prefix: "GH Actions:" | ||
labels: | ||
- "builds / deploys / releases" |