Skip to content

Commit 2cc670d

Browse files
committed
chore(renovate): Migrate to self-hosted Renovate.
This reverts commit 6afc8f6.
1 parent e097b88 commit 2cc670d

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/renovate.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Renovate
2+
on:
3+
schedule:
4+
# Run every Monday at 2:00 AM
5+
- cron: '0 2 * * 1'
6+
workflow_dispatch: # Allow manual triggering
7+
8+
jobs:
9+
renovate:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
issues: write
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Self-hosted Renovate
20+
uses: renovatebot/github-action@v39.0.5
21+
with:
22+
token: ${{ secrets.RENOVATE_TOKEN }}
23+
configurationFile: .renovate.json
24+
env:
25+
LOG_LEVEL: 'info'
26+
RENOVATE_REPOSITORIES: ${{ github.repository }}
File renamed without changes.

0 commit comments

Comments
 (0)