From e63ce35ecab75f08ac475dc03ec53834d313d6b7 Mon Sep 17 00:00:00 2001 From: Graham Beckley Date: Mon, 30 Oct 2023 13:31:24 -0400 Subject: [PATCH] Replace dependabot automation action with groups feature --- .github/dependabot.yml | 7 +++++++ .github/workflows/ci.yaml | 10 ---------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0dd670d6..2bc14894 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,13 @@ updates: interval: weekly day: sunday timezone: UCT + groups: + production-dependency-patches: + dependency-type: "production" + update-types: ["patch"] + development-dependencies: + dependency-type: "development" + update-types: ["major", "minor", "patch"] open-pull-requests-limit: 99 reviewers: - leplatrem diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6bc2dbc7..9eb65333 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -182,13 +182,3 @@ jobs: - name: Run browser tests run: make browser-test - - review-dependabot-pr: - permissions: - contents: write - pull-requests: write - runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} - steps: - - name: Enable Dependabot automation - uses: mozilla/syseng-pod/actions/dependabot-automerge@main