loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request '[CI] run renovate daily instead of every 30 minutes' (#2913) from earl-warren/forgejo:wip-renovate into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2913
Reviewed-by: Gusted <gusted@noreply.codeberg.org>

+9 -1
+9 -1
.forgejo/workflows/renovate.yml
··· 1 + # 2 + # The 2am run will rebase what needs rebasing & trigger the CI 3 + # The 4am run will merge one of them 4 + # 5 + # These times are chosen to minimize the likelyhood that another PR 6 + # is merged at the same time. This would not be necessary if automerge 7 + # worked but as of 30 March 2024 it does not. 8 + # 1 9 name: renovate 2 10 3 11 on: ··· 5 13 branches: 6 14 - 'renovate/**' # self-test updates 7 15 schedule: 8 - - cron: '*/30 * * * *' 16 + - cron: '0 2,4 * * *' 9 17 10 18 env: 11 19 RENOVATE_DRY_RUN: ${{ (github.event_name != 'schedule' && github.ref_name != github.event.repository.default_branch) && 'full' || '' }}