From 0b7e5afd7374941411d12b03ab328956f0c7b8c2 Mon Sep 17 00:00:00 2001 From: Mark van Holsteijn Date: Fri, 25 Oct 2024 14:19:04 +0200 Subject: [PATCH] fix: add --auto to pr merge --- .github/workflows/dependabot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot.yaml b/.github/workflows/dependabot.yaml index ce28208..5745842 100644 --- a/.github/workflows/dependabot.yaml +++ b/.github/workflows/dependabot.yaml @@ -17,7 +17,7 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Approve a PR - run: gh pr review --approve "$PR_URL" + run: gh pr review --approve "$PR_URL" --auto env: PR_URL: ${{ github.event.pull_request.html_url }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}