From fdf4f53d8ed341c7041812fc83824ee5cd39e807 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 29 Oct 2024 16:53:20 +0100 Subject: [PATCH] [TASK] Configure Dependabot to create specific commit messages (#1503) We want to be able to easily recognize PRs/commits created by Dependabot. Fixes #1498 --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c39d0fe..7db4bfe 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,7 @@ updates: # adjust this number according to your own milestones if used. milestone: 12 commit-message: - prefix: "[TASK] " + prefix: "[TASK][Dependabot] " - package-ecosystem: "composer" directory: "/" @@ -30,7 +30,7 @@ updates: # adjust this number according to your own milestones if used. milestone: 12 commit-message: - prefix: "[TASK] " + prefix: "[TASK][Dependabot] " - package-ecosystem: "npm" directory: "/" @@ -40,4 +40,4 @@ updates: # adjust this number according to your own milestones if used. milestone: 12 commit-message: - prefix: "[TASK] " + prefix: "[TASK][Dependabot] "