File tree 2 files changed +71
-0
lines changed
2 files changed +71
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow is for validating the Renovate configuration and docker image
2
+ # updates for it.
3
+ name : Renovate Validation
4
+ on :
5
+ workflow_dispatch :
6
+ inputs :
7
+ log-level :
8
+ type : choice
9
+ description : Select log level for Renovate
10
+ options :
11
+ - trace
12
+ - debug
13
+ - info
14
+ - warn
15
+ - error
16
+ default : info
17
+ required : false
18
+ pull_request :
19
+ paths :
20
+ # we trigger validation on any changes to the renovate workflow files
21
+ - .github/workflows/renovate*.yml
22
+ # as well as for any possible location for the renovate config file
23
+ - .github/renovate.json?
24
+
25
+
26
+ jobs :
27
+ renovate-validation :
28
+ # The reusable workflow will be updated by renovate if there's a new version
29
+ uses :
Unity-Technologies/renovate-workflows/.github/workflows/[email protected]
30
+ with :
31
+ # This is the image that contains our custom renovate and will be auto
32
+ # updated by Renovate itself.
33
+ image : europe-docker.pkg.dev/unity-cds-services-prd/ds-docker/renovate:10.1.3@sha256:fdeed7bb524bd67611eb91ee1a5e990c8c73ed62c84a0cd5ef66c87eb5fd0d70
34
+ dry-run : full
35
+ log-level : ${{ github.event.inputs.log-level }}
36
+ secrets :
37
+ renovate-auth-secret : ${{ secrets.RENOVATE_AUTH_SECRET }}
38
+ github-com-token : ${{ secrets.GH_COM_TOKEN }}
Original file line number Diff line number Diff line change
1
+ # This workflow runs Renovate against the current repo and will create PRs with outdated dependencies.
2
+ name : Renovate
3
+
4
+ on :
5
+ workflow_dispatch :
6
+ inputs :
7
+ log-level :
8
+ type : choice
9
+ description : Select log level for Renovate
10
+ options :
11
+ - trace
12
+ - debug
13
+ - info
14
+ - warn
15
+ - error
16
+ default : info
17
+ required : false
18
+ schedule :
19
+ # Every 6 hours at the 6th minute.
20
+ - cron : ' 06 */6 * * *'
21
+
22
+ jobs :
23
+ renovate :
24
+ # The reusable workflow will be updated by renovate if there's a new version
25
+ uses :
Unity-Technologies/renovate-workflows/.github/workflows/[email protected]
26
+ with :
27
+ # This is the image that contains our custom renovate and will be auto
28
+ # updated by Renovate itself.
29
+ image : europe-docker.pkg.dev/unity-cds-services-prd/ds-docker/renovate:10.1.3@sha256:fdeed7bb524bd67611eb91ee1a5e990c8c73ed62c84a0cd5ef66c87eb5fd0d70
30
+ log-level : ${{ github.event.inputs.log-level }}
31
+ secrets :
32
+ renovate-auth-secret : ${{ secrets.RENOVATE_AUTH_SECRET }}
33
+ github-com-token : ${{ secrets.GH_COM_TOKEN }}
You can’t perform that action at this time.
0 commit comments