feat: add renovate
This commit is contained in:
19
.github/workflows/renovate.yaml
vendored
Normal file
19
.github/workflows/renovate.yaml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Renovate
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 3 * * *" # täglich um 3 Uhr nachts
|
||||
workflow_dispatch: # auch manuell triggerbar
|
||||
|
||||
jobs:
|
||||
renovate:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/renovatebot/renovate:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: renovate
|
||||
env:
|
||||
RENOVATE_CONFIG_FILE: renovate.js
|
||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||
LOG_LEVEL: info
|
||||
7
renovate.js
Normal file
7
renovate.js
Normal file
@@ -0,0 +1,7 @@
|
||||
module.exports = {
|
||||
endpoint: "https://git.hashdot.co/api/v1",
|
||||
gitAuthor: "Renovate Bot <renovate@hashdot.co>",
|
||||
platform: "gitea",
|
||||
autodiscover: true,
|
||||
optimizeForDisabled: true,
|
||||
};
|
||||
Reference in New Issue
Block a user