From ac3aa49af8652618bfcd591f98259b0070fb130a Mon Sep 17 00:00:00 2001 From: Gustavo Gonzalez Date: Wed, 14 Aug 2024 17:02:52 -0300 Subject: [PATCH] Allow dependabot to open PRs (#1099) * add dependabot config * Update .github/dependabot.yml Co-authored-by: immrsd <103599616+immrsd@users.noreply.github.com> --------- Co-authored-by: immrsd <103599616+immrsd@users.noreply.github.com> --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..42968aead --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +# Allow Dependabot to open PRs for security issues and general version updates. +# It checks github actions and npm packages (for docs). +# Unfortunately, this is not yet possible for Scarb packages (https://github.com/software-mansion/scarb/issues/1083) +updates: + - package-ecosystem: github-actions + directory: '/' + schedule: + interval: daily + # npm packages for docs + - package-ecosystem: 'npm' + directory: '/docs' + schedule: + interval: 'daily'