Skip to content

Commit

Permalink
Add preset (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
at-wat authored Oct 9, 2022
1 parent 013e589 commit 523889f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: validate
on:
pull_request:
push:
branches:
- master

jobs:
config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install renovate
run: npm i -g renovate
- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: renovate.json
11 changes: 11 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":disableDependencyDashboard"
],
"commitBody": "Generated by renovateBot",
"github-actions": {
"fileMatch": ["^ci\\/workflows\\/[^/]+\\.ya?ml$"]
}
}

0 comments on commit 523889f

Please sign in to comment.