Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Configure self-hosted Renovate
Browse files Browse the repository at this point in the history
Implements: AE-1929
  • Loading branch information
solita-antti-mottonen committed Aug 24, 2023
1 parent 78f3643 commit 8359b08
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/renovate-bot-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"branchPrefix": "renovate-fix/",
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"platform": "github",
"repositories": [
"solita/etp-core"
]
}
22 changes: 22 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: renovate

on:
push:
branches:
- feature/AE-1929-renovate
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@v3.5.3
- name: Self-hosted Renovate
uses: renovatebot/github-action@v39.0.1
with:
token: ${{ secrets.RENOVATE_TOKEN }}
configurationFile: .github/renovate-bot-config.json
env:
LOG_LEVEL: 'debug'

0 comments on commit 8359b08

Please sign in to comment.