Skip to content

Commit

Permalink
Merge pull request #11 from solita/add-renovate
Browse files Browse the repository at this point in the history
Add Renovate bot
  • Loading branch information
solita-antti-mottonen authored Jun 11, 2024
2 parents cd5cd2f + 99d52c7 commit ea30959
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/renovate-bot-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"branchPrefix": "renovate-fix/",
"gitAuthor": "Renovate Bot <[email protected]>",
"platform": "github",
"repositories": [
"solita/puumerkki"
],
"extends": ["config:recommended"],
"dependencyDashboard": true,
"labels": ["dependencies"]
}
19 changes: 19 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: renovate

on:
schedule:
- cron: '10 0/1 * * *' # Start at ten past to avoid rush hour

jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
token: ${{ secrets.RENOVATE_TOKEN }}
configurationFile: .github/renovate-bot-config.json
env:
LOG_LEVEL: 'debug'

0 comments on commit ea30959

Please sign in to comment.