From a1867077bfb2939913e4ad62d3efc1d2508eef90 Mon Sep 17 00:00:00 2001 From: Jamie Strandboge Date: Thu, 26 Oct 2023 09:44:21 -0500 Subject: [PATCH] chore: ignore Go in .github/dependabot.yml Before switching to rust-based IOx, influxdb was a Go project which dependabot tracked. After the switch, dependabot would issue alerts for go files that no longer exist. Tell dependabot to ignore "gomod" --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7fd92c20cc7..284c1bfa79c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,3 +20,8 @@ updates: - dependency-name: "parquet" - dependency-name: "datafusion" - dependency-name: "datafusion-*" +# Before switching to rust-based IOx, influxdb was a Go project which +# dependabot tracked. After the switch, dependabot would issue alerts for go +# files that no longer exist. Tell dependabot to ignore "gomod" +ignore: + - package-ecosystem: "gomod"