diff options
author | Paulo Gomes <pjbgf@linux.com> | 2023-10-13 22:51:43 +0100 |
---|---|---|
committer | Paulo Gomes <pjbgf@linux.com> | 2023-10-13 22:53:08 +0100 |
commit | 136f6cc58f8469e8d5dfd1efeb6b1524215da22d (patch) | |
tree | f091417c7cfbf5c68393bfb50a72fcb9b548a7ac | |
parent | 24261e8288b2483628d69c751dd310ac79c38b2e (diff) | |
download | go-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>
-rw-r--r-- | .github/dependabot.yaml | 15 |
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" |