From 71fb44b89e6b0e31f6e2af83788602a9164c57f5 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 16 Jan 2025 06:58:08 +0100 Subject: [PATCH] chore: fix `dependabot.yml` (#569) --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c4a680b..716f159 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,16 +4,16 @@ updates: directory: / schedule: interval: weekly - open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}} + open-pull-requests-limit: !!int ${{secrets.OPEN_PR_LIMIT}} - package-ecosystem: docker directory: / schedule: interval: weekly - open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}} + open-pull-requests-limit: !!int ${{secrets.OPEN_PR_LIMIT}} - package-ecosystem: npm directory: / schedule: interval: weekly - open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}} + open-pull-requests-limit: !!int ${{secrets.OPEN_PR_LIMIT}}