From 460c0eb83ddd227ac616fd17d2b2885b2a7c5d8e Mon Sep 17 00:00:00 2001 From: Brandon Lim Date: Wed, 22 May 2024 16:31:37 -0700 Subject: [PATCH] Delete renovate after renovate-fleet org wide setup --- .github/renovate-config.json | 9 --------- .github/workflows/periodic-renovate.yml | 25 ------------------------- 2 files changed, 34 deletions(-) delete mode 100644 .github/renovate-config.json delete mode 100644 .github/workflows/periodic-renovate.yml diff --git a/.github/renovate-config.json b/.github/renovate-config.json deleted file mode 100644 index d439eab..0000000 --- a/.github/renovate-config.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "branchPrefix": "renovate/", - "username": "renovate-thm[bot]", - "gitAuthor": "renovate ", - "platform": "github", - "onboarding": false, - "forkProcessing": "disabled", - "repositories": ["theoremlp/rules_uv"] -} diff --git a/.github/workflows/periodic-renovate.yml b/.github/workflows/periodic-renovate.yml deleted file mode 100644 index 82ecb6a..0000000 --- a/.github/workflows/periodic-renovate.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Renovate -on: - workflow_dispatch: {} - schedule: - # run every 15th minute between 9am and 5pm (4am and 12pm UTC), M-F - - cron: "0/15 14-22 * * 1-5" -jobs: - renovate: - runs-on: ubuntu-latest - if: ${{ github.ref == 'refs/heads/main' }} - steps: - - name: Get Renovate GitHub App Token - id: app-token - uses: actions/create-github-app-token@v1 - with: - app-id: ${{ secrets.RENOVATE_THM_APP_ID_PUB }} - private-key: ${{ secrets.RENOVATE_THM_PRIVATE_KEY_PUB }} - - uses: actions/checkout@v4 - - name: Run Renovate - uses: renovatebot/github-action@063e0c946b9c1af35ef3450efc44114925d6e8e6 # v40.1.11 - with: - # options in this file are defined by - # https://docs.renovatebot.com/self-hosted-configuration/ - configurationFile: .github/renovate-config.json - token: ${{ steps.app-token.outputs.token }}