From 582133fb19eb153b5a2e2366325ab866dcda16b3 Mon Sep 17 00:00:00 2001 From: Jimmi Dyson Date: Mon, 9 Dec 2024 18:28:40 +0000 Subject: [PATCH] build: Properly ignore ntnx API client from dependabot (#995) The existing configuration still allowed pre-release updates and there is no way to configure this. Removing the update-types means this will always be ignored and only updated when the NCN ntnx client is updated. **What problem does this PR solve?**: **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: **Special notes for your reviewer**: --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f8c3c31df..b28bb978d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -28,7 +28,6 @@ updates: update-types: [ "version-update:semver-major", "version-update:semver-minor" ] # Ignore ntnx-api-golang-clients modules major, minor, and patch as they are upgraded together with prism-go-client. - dependency-name: "github.com/nutanix/ntnx-api-golang-clients/*" - update-types: [ "version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch" ] - package-ecosystem: "gomod" directory: "/hack/third-party/capa"