diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 12:43:45 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-01 12:43:45 +0900 |
commit | 0fbfeb883eb4ca03b9a802757138fef9a6835cdc (patch) | |
tree | d752d7594d8302f149eb6aa30485a324ab7aa883 /.github/dependabot.yml | |
parent | ea1c147730bef183855f5dc079c9a2d19e1c623e (diff) | |
parent | 0fa8d441a269b13474e6ad4108f49497d4d3abfd (diff) |
Merge branch 'master' into dependabot/github_actions/cardinalby/schema-validator-action-3.0.0
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r-- | .github/dependabot.yml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0bbc7cb8..cbd48cc8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,13 +3,27 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "monthly" labels: - "area/dependencies" + groups: # group minor/patch updates together + minor: + patterns: + - "*" + update-types: + - "minor" + - "patch" - package-ecosystem: "npm" directory: "/" schedule: - interval: "weekly" + interval: "monthly" labels: - "area/dependencies" + groups: # group minor/patch updates together + minor: + patterns: + - "*" + update-types: + - "minor" + - "patch" |