From 104bd59e1ebe7502fbe3d0ad55de3b532fd7af19 Mon Sep 17 00:00:00 2001 From: Swift Date: Mon, 24 Nov 2025 09:53:35 +0000 Subject: [PATCH 1/2] remove `renovate.yaml` self-hosted renovate workflow with the GitHub App migration --- .github/workflows/renovate.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/renovate.yaml diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml deleted file mode 100644 index 18f1a86..0000000 --- a/.github/workflows/renovate.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Renovate - -on: - schedule: - - cron: "0 8 * * *" - workflow_dispatch: - -jobs: - renovate: - runs-on: ubuntu-24.04 - concurrency: - group: renovate - cancel-in-progress: true - - permissions: - contents: write - pull-requests: write - issues: write - - steps: - - uses: actions/checkout@v6 - - - uses: renovatebot/github-action@v44.0.3 - with: - token: ${{ secrets.RENOVATE_TOKEN }} - env: - RENOVATE_CONFIG_FILE: ".github/renovate.json" - LOG_LEVEL: debug - RENOVATE_REPOSITORIES: "CCPBioSim/CodeEntropy" \ No newline at end of file From ce84de2d7b75a1468c6effc1bd77f3697e4e6c32 Mon Sep 17 00:00:00 2001 From: Swift Date: Mon, 24 Nov 2025 09:58:12 +0000 Subject: [PATCH 2/2] include `schedule` and `labels` within `.github/renovate.json` --- .github/renovate.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 104e6d6..2a44f9d 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -7,6 +7,8 @@ "group:recommended" ], "rangeStrategy": "pin", + "schedule": ["before 8am on weekdays"], + "labels": ["dependencies"], "lockFileMaintenance": { "enabled": true },