Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR Title Validator
name: Validators

on:
pull_request:
Expand Down Expand Up @@ -29,3 +29,24 @@ jobs:
if (!match.groups.subject) {
core.setFailed('Missing subject in PR title');
}

renovate:
name: Validate Renovate config
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc

- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
run_install: false

- run: pnpm install --global renovate

- name: Validate Renovate config
run: renovate-config-validator
5 changes: 3 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"extends": ["config:recommended"],
"labels": ["dependency"],
"prConcurrentLimit": 5,
"rangeStrategy": "pin"
"rangeStrategy": "pin",
"schedule": ["monthly"]
}