Skip to content

Commit

Permalink
Add dependabot.yml for handling Composer updates
Browse files Browse the repository at this point in the history
This commit introduces a new dependabot.yml file to manage dependency updates for Composer packages. Major version updates will be tracked on a weekly basis, ignoring minor and patch updates to streamline dependency management.
  • Loading branch information
koriym committed Sep 5, 2024
1 parent 1b1e2ab commit 48878e7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Alerts only major updates for Packagist (Composer)
#
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "composer" # Specify the correct package ecosystem for PHP
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
ignore:
- dependency-name: "*" # Ignore all dependencies for specific update types
update-types: ["version-update:semver-minor", "version-update:semver-patch"]

0 comments on commit 48878e7

Please sign in to comment.