From cbe173298d8b2a46e8839c7600e71603fc1b0fce Mon Sep 17 00:00:00 2001 From: Annabelle PELLIER Date: Tue, 28 Apr 2026 14:18:33 +0200 Subject: [PATCH] chore(ci): add Dependabot auto-merge workflow --- .github/workflows/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 00000000..8423b05c --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,15 @@ +name: Dependabot auto-approve +on: pull_request + +permissions: + pull-requests: write + contents: write + +jobs: + dependabot: + runs-on: ubuntu-24.04 + steps: + - name: Automatically merge Dependabot PRs + uses: Scalingo/actions/dependabot-automerge@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}