From b258263053cd60fb772a5497d0a56bdd726fd3b7 Mon Sep 17 00:00:00 2001 From: ydah <13041216+ydah@users.noreply.github.com> Date: Mon, 2 Oct 2023 11:41:45 +0900 Subject: [PATCH] Added dependabot for GitHub Actions and bundler How about using dependabot in this way? When this works, a pull request is created as follows: - ruby/bigdecimal#242 It was created with reference to the following: - ruby/csv#265 --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..403b308 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"