Skip to content
This repository was archived by the owner on May 28, 2026. It is now read-only.

Commit 41ed3f2

Browse files
committed
initial commit
0 parents  commit 41ed3f2

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/renovate.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: renovate
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: checkout
10+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
11+
12+
- uses: actions/create-github-app-token@v3
13+
id: app-token
14+
with:
15+
client-id: ${{ vars.APP_CLIENT_ID }}
16+
private-key: ${{ secrets.APP_PRIVATE_KEY }}
17+
18+
- name: Self-hosted Renovate
19+
uses: renovatebot/github-action@v46.1.14
20+
with:
21+
configurationFile: renovate-config.js
22+
token: ${{ steps.app-token.outputs.token }}

renovate-config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
onboarding: false,
3+
platform: 'github',
4+
dryRun: 'full',
5+
};

0 commit comments

Comments
 (0)