From a26238acf3e35e00d8b38b7bfb01ae7d6c0d7d7f Mon Sep 17 00:00:00 2001 From: Jilson Thomas Date: Tue, 21 Jan 2025 09:15:50 -0500 Subject: [PATCH] chore(*): disable-auto-approve (#496) * chore(*): disable-auto-approve * chore(*): delete workflow file --- .github/workflows/auto-approve.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/auto-approve.yaml diff --git a/.github/workflows/auto-approve.yaml b/.github/workflows/auto-approve.yaml deleted file mode 100644 index 79825ddc..00000000 --- a/.github/workflows/auto-approve.yaml +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Renovate Bot dependency updates auto-merge - -permissions: - pull-requests: write - contents: write - -on: - pull_request: - types: ['opened'] - -jobs: - renovate-autoapprove: - runs-on: ubuntu-latest - if: ${{ github.actor == 'renovate[bot]' }} - steps: - - name: Approve a PR - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - # Use the bot account PAT to allow auto-approve and merge the PRs - GITHUB_TOKEN: ${{ secrets.KONGPONENTS_BOT_PAT }}