Add renovate preset to update the public reusable GitHub Workflow #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Renovate Configuration | |
on: | |
pull_request: | |
branches: | |
- main | |
# Only watch root level Renovate configuration changes | |
paths: | |
- 'renovate.json*' | |
- 'renovate-presets/**' | |
- '.github/workflows/internal-check-renovate-config.yml' # or when this file changed | |
jobs: | |
reports: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GIT Repository | |
uses: actions/checkout@v4 | |
- name: Setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Run renovate-config-validator | |
run: npx --yes --package [email protected] -- renovate-config-validator |