From 4d5ffa99b3187cc6d111569c5444006ea08279c6 Mon Sep 17 00:00:00 2001 From: ydah <13041216+ydah@users.noreply.github.com> Date: Fri, 6 Jan 2023 23:40:04 +0900 Subject: [PATCH] Added dependabot for GitHub Actions and bundler How about using dependabot in this way? When this works, a PullRequest 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 0000000000..75bc9cd613 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly"