From 81a51fe81c9124f887495ebdde6b5cb26e8355f0 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Wed, 21 Feb 2024 17:24:49 -0600 Subject: [PATCH] Update Dependabot PR prefixes Swap out current prefixes for ones which provide more specific context for what the update covers. - replace `go.mod` with `Go Dependency` - replace `ghaw` with `CI Dependency` Refs: - atc0005/todo#72 --- .github/dependabot.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9af5e10..1d0a27c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ # Licensed under the MIT License. See LICENSE file in the project root for # full license information. -# https://help.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file ###################################################################### # Monitor Go module dependency updates @@ -28,7 +28,7 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "go.mod" + prefix: "Go Dependency" - package-ecosystem: "gomod" directory: "/" @@ -45,7 +45,7 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "go.mod" + prefix: "Go Dependency" ###################################################################### # Monitor GitHub Actions dependency updates @@ -67,7 +67,7 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "ghaw" + prefix: "CI Dependency" - package-ecosystem: "github-actions" directory: "/" @@ -85,4 +85,4 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "ghaw" + prefix: "CI Dependency"