aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorPaulo Gomes <pjbgf@linux.com>2023-10-13 22:51:43 +0100
committerPaulo Gomes <pjbgf@linux.com>2023-10-13 22:53:08 +0100
commit136f6cc58f8469e8d5dfd1efeb6b1524215da22d (patch)
treef091417c7cfbf5c68393bfb50a72fcb9b548a7ac /.github
parent24261e8288b2483628d69c751dd310ac79c38b2e (diff)
downloadgo-git-136f6cc58f8469e8d5dfd1efeb6b1524215da22d.tar.gz
build: Add dependabot configuration
Configure dependabot to check for Go updates daily and GitHub actions weekly. The configuration sets the commit prefix, so that it aligns with the contributing guidelines. Signed-off-by: Paulo Gomes <pjbgf@linux.com>
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
new file mode 100644
index 0000000..6a7a66b
--- /dev/null
+++ b/.github/dependabot.yaml
@@ -0,0 +1,15 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
+ commit-message:
+ prefix: "build"
+
+ - package-ecosystem: "gomod"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ commit-message:
+ prefix: "build"