From 5772e7de755d25fcae969d53200613f1e2ed0381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B8ydahl?= Date: Wed, 22 Feb 2023 14:22:53 +0100 Subject: [PATCH] Prepare for running on main Solr repo. Schedule every 2nd hour. --- .github/workflows/renovate.yml | 7 +++---- solr/renovate-config.js | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 3b1f28bb..9a5cc1a3 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -1,9 +1,8 @@ name: Renovate on: schedule: - # The "*" (#42, asterisk) character has special semantics in YAML, so this - # string has to be quoted. - - cron: '0 * * * *' + # Run every 2nd hour + - cron: '0 */2 * * *' jobs: renovate: runs-on: ubuntu-latest @@ -18,6 +17,6 @@ jobs: useSlim: false env: RENOVATE_FORK_TOKEN: ${{ secrets.RENOVATE_FORK_TOKEN }} - LOG_LEVEL: "debug" + LOG_LEVEL: "info" RENOVATE_DOCKER_USER: "1000:0" RENOVATE_BINARY_SOURCE: "global" diff --git a/solr/renovate-config.js b/solr/renovate-config.js index 1d63749a..09f6d2f1 100644 --- a/solr/renovate-config.js +++ b/solr/renovate-config.js @@ -1,11 +1,11 @@ module.exports = { - gitAuthor: 'SolrBot ', + gitAuthor: 'SolrBot ', onboarding: false, - requireConfig: "optional", + requireConfig: "required", platform: 'github', includeForks: false, repositories: [ - 'cominvent/solr-playground' + 'apache/solr' ], allowedPostUpgradeCommands: ["./gradlew.*"] };