From 8473811efe620601199cc96fe702a610d7558fdf Mon Sep 17 00:00:00 2001 From: Alain Bourgeois Date: Tue, 14 Apr 2026 10:34:38 +0200 Subject: [PATCH] Remove Dependabot PR approval step Removed approval step for Dependabot PRs in CI workflow. --- .github/workflows/ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f81a22..5a2690b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,11 +57,6 @@ jobs: uses: dependabot/fetch-metadata@v2 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - - name: Approve Dependabot PR - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Enable auto-merge for Dependabot PRs if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor' run: gh pr merge --auto --merge "$PR_URL" # Use Github CLI to merge automatically the PR