From 8cf658a2c4c4c23d9e500f42913a8511a5aa785c Mon Sep 17 00:00:00 2001 From: Lakshmi Javadekar <103459615+lakshmimsft@users.noreply.github.com> Date: Tue, 26 Nov 2024 14:05:52 -0800 Subject: [PATCH] Update Dependabot configuration under /typespec/ (#8055) # Description Updating Dependabot configuration under /typespec/ so that Major and Minor updates should not trigger Dependabot pull requests (PRs) for regular version updates. ref link: [Dependabot Config](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#example-3) ## Type of change - This pull request is a minor refactor, code cleanup, test improvement, or other maintenance task and doesn't change the functionality of Radius (issue link optional). Fixes: #issue_number ## Contributor checklist Please verify that the PR meets the following requirements, where applicable: - [ ] An overview of proposed schema changes is included in a linked GitHub issue. - [ ] A design document PR is created in the [design-notes repository](https://github.com/radius-project/design-notes/), if new APIs are being introduced. - [ ] If applicable, design document has been reviewed and approved by Radius maintainers/approvers. - [ ] A PR for the [samples repository](https://github.com/radius-project/samples) is created, if existing samples are affected by the changes in this PR. - [ ] A PR for the [documentation repository](https://github.com/radius-project/docs) is created, if the changes in this PR affect the documentation or any user facing updates are made. - [ ] A PR for the [recipes repository](https://github.com/radius-project/recipes) is created, if existing recipes are affected by the changes in this PR. --------- Signed-off-by: lakshmimsft --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 52e2268d1a..63d5f6872c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -32,3 +32,10 @@ updates: directory: "/typespec/" schedule: interval: "weekly" + groups: + typespec: + applies-to: version-updates + patterns: + - "*" # Matches all dependencies + update-types: + - "patch" # Only allow patch updates for regular version updates