From a7ff273a96cccfd63eadef4552be0df1bf2219dc Mon Sep 17 00:00:00 2001 From: Kevin Burnett <18027+burnettk@users.noreply.github.com> Date: Tue, 6 Jun 2023 23:26:05 +0000 Subject: [PATCH] let dependabot update packages in one directory just to dip our toes (#300) Co-authored-by: burnettk --- .github/dependabot.yml | 70 +++++++++++++++++++++++++----------------- 1 file changed, 42 insertions(+), 28 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e5a0c3bd..724c5333 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,34 +1,48 @@ version: 2 updates: + + # GITHUB-ACTIONSS - package-ecosystem: github-actions directory: "/" schedule: interval: daily - # - package-ecosystem: pip - # directory: "/.github/workflows" - # schedule: - # interval: daily - # - package-ecosystem: pip - # directory: "/spiffworkflow-backend/docs" - # schedule: - # interval: daily - # - package-ecosystem: pip - # directory: "/" - # schedule: - # interval: daily - # - package-ecosystem: pip - # directory: "/spiffworkflow-backend" - # schedule: - # interval: daily - # - package-ecosystem: npm - # directory: "/.github/workflows" - # schedule: - # interval: daily - # - package-ecosystem: npm - # directory: "/spiffworkflow-frontend" - # schedule: - # interval: daily - # - package-ecosystem: npm - # directory: "/bpmn-js-spiffworkflow" - # schedule: - # interval: daily + open-pull-requests-limit: 0 + + # PIP + - package-ecosystem: pip + directory: "/.github/workflows" + schedule: + interval: daily + open-pull-requests-limit: 0 + - package-ecosystem: pip + directory: "/spiffworkflow-backend/docs" + schedule: + interval: daily + open-pull-requests-limit: 1 + - package-ecosystem: pip + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 0 + - package-ecosystem: pip + directory: "/spiffworkflow-backend" + schedule: + interval: daily + open-pull-requests-limit: 0 + + # NPM + - package-ecosystem: npm + directory: "/.github/workflows" + schedule: + interval: daily + open-pull-requests-limit: 0 + - package-ecosystem: npm + directory: "/spiffworkflow-frontend" + schedule: + interval: daily + open-pull-requests-limit: 0 + - package-ecosystem: npm + directory: "/bpmn-js-spiffworkflow" + schedule: + interval: daily + open-pull-requests-limit: 0