From 684505ed9bb59243e1a8f2bff699980797644e1a Mon Sep 17 00:00:00 2001 From: ydah <13041216+ydah@users.noreply.github.com> Date: Fri, 7 Jul 2023 17:42:32 +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 0000000..172b885 --- /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"