Skip to content

Commit

Permalink
ci: add GitHub workflow for validating Renovate config file
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi committed Dec 7, 2023
1 parent b3575c9 commit 0c7304d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/renovate-validation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: renovate-config-validator
# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: suzuki-shunsuke/[email protected]
with:
config_file_path: default.json
validate-presets:
runs-on: ubuntu-latest
strategy:
matrix:
config_file_path:
- default.json
steps:
- uses: actions/checkout@v2
- uses: suzuki-shunsuke/[email protected]
with:
config_file_path: ${{ matrix.config_file_path }}

0 comments on commit 0c7304d

Please sign in to comment.