Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dependabot configuration file #207

Merged
merged 1 commit into from
Sep 17, 2023
Merged
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
37 changes: 37 additions & 0 deletions .github/dependabot.yml
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

Check warning on line 6 in .github/dependabot.yml

View workflow job for this annotation

GitHub Actions / yamllint

6:1 [document-start] missing document start "---"

Check warning on line 6 in .github/dependabot.yml

View workflow job for this annotation

GitHub Actions / yamllint

6:1 [document-start] missing document start "---"
updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5 # Set to 0 to (temporarily) disable.

Check warning on line 12 in .github/dependabot.yml

View workflow job for this annotation

GitHub Actions / yamllint

12:33 [comments] too few spaces before comment

Check warning on line 12 in .github/dependabot.yml

View workflow job for this annotation

GitHub Actions / yamllint

12:33 [comments] too few spaces before comment
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"
Loading