From 592ba3c0801474ee59e24b0b047ac24050996c40 Mon Sep 17 00:00:00 2001 From: Darius Dzien Date: Sun, 2 Jan 2022 13:10:23 -0600 Subject: [PATCH 1/2] Add GitHub Actions to Dependabot config --- .github/dependabot.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b737b2083e..abda82b996 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,12 +1,12 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - version: 2 updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: 'npm' + directory: '/' schedule: - interval: "weekly" + interval: 'weekly' open-pull-requests-limit: 10 + + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly' From db1377d2eb53a60af534b3d4481712f5ac11237c Mon Sep 17 00:00:00 2001 From: Darius Dzien Date: Sun, 2 Jan 2022 14:59:13 -0600 Subject: [PATCH 2/2] Address comment --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index abda82b996..ffb6cd6491 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,3 +1,5 @@ +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + version: 2 updates: - package-ecosystem: 'npm'