File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Validate Renovate configuration
2
+
3
+ on :
4
+ pull_request :
5
+ paths :
6
+ - ' renovate.json'
7
+
8
+ jobs :
9
+ validate :
10
+ name : Validate Renovate configuration
11
+ runs-on : ubuntu-24.04
12
+ steps :
13
+ - name : Checkout configuration
14
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15
+
16
+ # this step uses latest renovate slim release
17
+ - name : Validate configuration
18
+ run : |
19
+ # renovate: datasource=docker
20
+ export RENOVATE_IMAGE=ghcr.io/renovatebot/renovate:40.60.0@sha256:3af0fc62061baec7ed70cf482f81265462259470edfbe6ba714d568228eef70e
21
+ docker run --rm --entrypoint "renovate-config-validator" \
22
+ -v "${{ github.workspace }}/.github/renovate.json":"/renovate.json" \
23
+ ${RENOVATE_IMAGE} "/renovate.json"
You can’t perform that action at this time.
0 commit comments