From 2bc477d38428a3dbf31ed184672ce35703b72d78 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Wed, 27 Dec 2023 12:28:26 +0100 Subject: [PATCH] Reconfigureing the dependabot limits (#491) Setting the pip lmits to 10 since we idel often with 5 open PRs. --- .github/dependabot.yml | 4 ++-- .github/workflows/dependabot-auto-merge.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 650182e..e5b4324 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,10 +11,10 @@ updates: interval: daily open-pull-requests-limit: 10 - package-ecosystem: pip # See documentation for possible values - directory: / # Location of package manifests + directory: / # Location of package manifests schedule: interval: daily - open-pull-requests-limit: 5 + open-pull-requests-limit: 10 ignore: - dependency-name: '*' update-types: ['version-update:semver-major'] diff --git a/.github/workflows/dependabot-auto-merge.yaml b/.github/workflows/dependabot-auto-merge.yaml index 53d8866..a4a1adc 100644 --- a/.github/workflows/dependabot-auto-merge.yaml +++ b/.github/workflows/dependabot-auto-merge.yaml @@ -14,7 +14,7 @@ permissions: jobs: dependabot: runs-on: ubuntu-latest - if: ${{ (github.actor == 'dependabot[bot]') || (github.actor == 'github-actions[bot]') }} + if: ${{ ((github.actor == 'dependabot[bot]') || (github.actor == 'github-actions[bot]')) }} steps: - name: Dependabot metadata id: metadata