mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
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>
This commit is contained in:
commit
bbf612b3a8
1 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
#
|
||||
# The 2am run will rebase what needs rebasing & trigger the CI
|
||||
# The 4am run will merge one of them
|
||||
#
|
||||
# These times are chosen to minimize the likelyhood that another PR
|
||||
# is merged at the same time. This would not be necessary if automerge
|
||||
# worked but as of 30 March 2024 it does not.
|
||||
#
|
||||
name: renovate
|
||||
|
||||
on:
|
||||
|
@ -5,7 +13,7 @@ on:
|
|||
branches:
|
||||
- 'renovate/**' # self-test updates
|
||||
schedule:
|
||||
- cron: '*/30 * * * *'
|
||||
- cron: '0 2,4 * * *'
|
||||
|
||||
env:
|
||||
RENOVATE_DRY_RUN: ${{ (github.event_name != 'schedule' && github.ref_name != github.event.repository.default_branch) && 'full' || '' }}
|
||||
|
|
Loading…
Reference in a new issue