From 5186354ba3c9ef32c2f702f0952ef723ec210c28 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 30 Jan 2023 15:08:32 +0100 Subject: [PATCH] Enable auto merge --- .github/workflows/update-dependencies.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index d684883..bbd88e7 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -28,6 +28,7 @@ jobs: invoke update-dependencies --no-sync - name: Create Pull Request uses: peter-evans/create-pull-request@v4 + id: create-pull-request with: token: ${{ secrets.PERSONAL_TOKEN_PR }} commit-message: Update dependencies @@ -35,3 +36,8 @@ jobs: branch: update-dependencies title: Update dependencies delete-branch: true + - name: Enable auto merge + uses: peter-evans/enable-pull-request-automerge@v2 + with: + token: ${{ secrets.PERSONAL_TOKEN_PR }} + pull-request-number: ${{ steps.create-pull-request.outputs.pull-request-number }}