test #24

Merged
mcmuzzle merged 1 commits from AddRenovate into main 2024-09-13 14:12:12 +00:00
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- main
pull_request:
branches: ["main"]
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.20.2
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/mcmuzzle/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}

11
renovate.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": [
"config:base"
],
"packageRules": [
{
"updateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
}
]
}