From b1b87d1e9524db9d0c745673bbff904f897cc941 Mon Sep 17 00:00:00 2001 From: Dave Thaler Date: Mon, 20 Nov 2023 16:17:50 -0800 Subject: [PATCH] Enable dependabot for updating the Gemfile When Ruby dependencies are updated, dependabot will create a pull request to update them. Signed-off-by: Dave Thaler --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..9c6b5e9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +# For documentation on the format of this file, see +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" + day: "saturday" + + - package-ecosystem: "github-actions" + # Workflow files stored in the + # default location of `.github/workflows` + directory: "/" + schedule: + interval: "weekly" + day: "saturday"