From 011020918d8ca36862666ed05946f6446289ab3b Mon Sep 17 00:00:00 2001 From: Jilson Thomas Date: Mon, 20 Jan 2025 15:30:59 -0500 Subject: [PATCH 1/2] chore(*): disable auto approve --- .github/workflows/auto-approve.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-approve.yaml b/.github/workflows/auto-approve.yaml index 7f274bf6..57a02ac5 100644 --- a/.github/workflows/auto-approve.yaml +++ b/.github/workflows/auto-approve.yaml @@ -6,8 +6,8 @@ permissions: contents: write on: - pull_request: - types: ['opened'] + # pull_request: + # types: ['opened'] jobs: renovate-autoapprove: From 0966c4053a91963bfab29d918cb10c6b5dfb03e1 Mon Sep 17 00:00:00 2001 From: Jilson Thomas Date: Tue, 21 Jan 2025 09:10:53 -0500 Subject: [PATCH 2/2] chore(*): delete workflow file --- .github/workflows/auto-approve.yaml | 23 ----------------------- 1 file changed, 23 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 57a02ac5..00000000 --- a/.github/workflows/auto-approve.yaml +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Renovate Bot dependency updates auto-merge - -permissions: - pull-requests: write - contents: write - -on: - # pull_request: - # types: ['opened'] - -jobs: - renovate-autoapprove: - if: ${{ github.actor == 'renovate[bot]' }} - runs-on: ubuntu-latest - timeout-minutes: 5 - 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 }}