From 21930bf7fd1904b704f54df0a176e0a1b6c216ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Michon?= Date: Thu, 2 Feb 2023 17:26:21 +0100 Subject: [PATCH] feat(workflows): enable ghaction-dependabot-automerge --- .github/workflows/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 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 0000000..2e5ee58 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,17 @@ +name: Dependabot auto-approve +on: pull_request + +permissions: + # Mandatory for both the auto-merge enabling and approval steps + pull-requests: write + # Mandatory for the auto-merge enabling step + contents: write + +jobs: + dependabot: + runs-on: ubuntu-latest + steps: + - name: Automatically merge Dependabot PRs + uses: scalingo/ghaction-dependabot-automerge@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}