Skip to content

Commit 7fca4a5

Browse files
chore(repo): Configure Renovate (clerk#3058)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: LekoArts <lekoarts@gmail.com>
1 parent 54be8d7 commit 7fca4a5

4 files changed

Lines changed: 1496 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Validate Renovate Config
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'renovate.json5'
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
validate-renovate-config:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repo
17+
uses: actions/checkout@v4
18+
19+
- name: Setup
20+
id: config
21+
uses: ./.github/actions/init
22+
with:
23+
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
24+
turbo-team: ${{ vars.TURBO_TEAM }}
25+
playwright-enabled: true # Must be present to enable caching on branched workflows
26+
turbo-token: ${{ secrets.TURBO_TOKEN }}
27+
28+
- name: Validate Renovate Config
29+
run: npx --yes --package renovate renovate-config-validator

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ package-lock.json
2020
playground
2121
packages/backend/tests/**/*.js
2222
/**/CHANGELOG.md
23+
renovate.json5

0 commit comments

Comments
 (0)