Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/renovate-config-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Validate Renovate Config

on:
push:
paths:
- renovate.json
pull_request:
paths:
- renovate.json

permissions: read-all

jobs:
validate-renovate-config:
name: Validate renovate.json
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Validate renovate.json
run: docker run --rm -v "$PWD":/work -w /work renovate/renovate:latest renovate-config-validator renovate.json
Loading