From ae4220a409b04dbd3bc89fcafdd550bc02783196 Mon Sep 17 00:00:00 2001 From: Christian Bundy Date: Sat, 21 Nov 2020 16:47:54 -0800 Subject: [PATCH] Increase dependabot open PR limit Problem: 5 is not a lot and I'd rather have the builds all done and ready when I'm ready to merge them instead of having to do them in chunks of 5. Solution: Allow 16 open PRs at a time. We can change as needed. --- .github/dependabot.yml | 1 + .github/workflows/pr.yml | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8abca40..c539e33 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,4 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" + open-pull-requests-limit: 16 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 6697dfd..20841b6 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,9 +18,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - - name: Set git to not change EoL - run: | - git config --global core.autocrlf false + - run: git config --global core.autocrlf false - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1