From 39a93e7eb0c0861b119e619257621cfafe4c9c09 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Wed, 26 Jun 2024 09:02:12 +0300 Subject: [PATCH 1/2] chore: optimize dependabot configuration 1. Merges `site` and `offlinedocs` configs as @dependabot now supports specifying multiple .directories. See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#directories 2. Removes grouping as it is not practical to resolve PRs like #13605 Let me know what your thoughts are. --- .github/dependabot.yaml | 35 ++++------------------------------- 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index fecbe9ba959cb..5a8590640eaac 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -61,7 +61,9 @@ updates: - dependency-name: "terraform" - package-ecosystem: "npm" - directory: "/site/" + directories: + - "/site" + - "/offlinedocs" schedule: interval: "monthly" time: "06:00" @@ -82,33 +84,4 @@ updates: update-types: - version-update:semver-major open-pull-requests-limit: 15 - groups: - site: - patterns: - - "*" - - - package-ecosystem: "npm" - directory: "/offlinedocs/" - schedule: - interval: "monthly" - time: "06:00" - timezone: "America/Chicago" - reviewers: - - "coder/ts" - commit-message: - prefix: "chore" - labels: [] - ignore: - # Ignore patch updates for all dependencies - - dependency-name: "*" - update-types: - - version-update:semver-patch - # Ignore major updates to Node.js types, because they need to - # correspond to the Node.js engine version - - dependency-name: "@types/node" - update-types: - - version-update:semver-major - groups: - offlinedocs: - patterns: - - "*" + From fb39a4415e9049988b404dfde10c1c48e2b54dcf Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Wed, 26 Jun 2024 06:33:33 +0000 Subject: [PATCH 2/2] `make fmt` --- .github/dependabot.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 5a8590640eaac..0f8f8849a84c2 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -84,4 +84,3 @@ updates: update-types: - version-update:semver-major open-pull-requests-limit: 15 -