From 8a106c0821e431a77e8ad67b44625c19df23bb5a Mon Sep 17 00:00:00 2001 From: Joseph Fourny Date: Thu, 16 May 2024 10:41:06 -0400 Subject: [PATCH] Adding dependabot. (#957) --- .github/dependabot.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..8054b6ea0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +registries: + ruby-shopify: + type: rubygems-server + url: https://pkgs.shopify.io/basic/gems/ruby + username: ${{secrets.RUBYGEMS_SERVER_PKGS_SHOPIFY_IO_USERNAME}} + password: ${{secrets.RUBYGEMS_SERVER_PKGS_SHOPIFY_IO_PASSWORD}} + github-com: + type: git + url: https://github.com + username: ${{secrets.DEPENDENCIES_GITHUB_USER}} + password: ${{secrets.DEPENDENCIES_GITHUB_TOKEN}} +updates: +- package-ecosystem: bundler + directory: "/" + schedule: + interval: "weekly" + time: "10:00" + timezone: "America/Toronto" + open-pull-requests-limit: 100 + insecure-external-code-execution: allow + registries: "*" \ No newline at end of file