-
Notifications
You must be signed in to change notification settings - Fork 255
37 lines (32 loc) · 1.2 KB
/
renovate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Refer to https://internaldocs.unity.com/renovate/ for more documentation
# This workflow runs Renovate against the current repo and will create PRs with outdated dependencies.
name: Renovate
on:
workflow_dispatch:
inputs:
log-level:
type: choice
description: Select log level for Renovate
options:
- trace
- debug
- info
- warn
- error
default: info
required: false
schedule:
# Default daily scheduled run. Feel free to change this to run when you want it to.
- cron: '25 17 * * *'
jobs:
renovate:
# The reusable workflow will be updated by renovate if there's a new version
uses: unity/renovate-workflows/.github/workflows/[email protected]
with:
# This is the image that contains our custom renovate and will be auto
# updated by Renovate itself.
image: europe-docker.pkg.dev/unity-cds-services-prd/ds-docker/renovate:10.2.4@sha256:3c19b168b1a9a4ca076ad5f858176ef0b2eafc34aafcd6e2276133a563d35112
log-level: ${{ github.event.inputs.log-level }}
secrets:
renovate-auth-secret: ${{ secrets.RENOVATE_AUTH_SECRET }}
github-com-token: ${{ secrets.GH_COM_TOKEN }}