Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
dc487d2ee7
commit
6854d33287
2 changed files with 37 additions and 0 deletions
21
.forgejo/workflows/renovate.yaml
Normal file
21
.forgejo/workflows/renovate.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: renovate
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "@hourly"
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
renovate:
|
||||
runs-on: ubuntu-latest
|
||||
container: ghcr.io/renovatebot/renovate
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: renovate
|
||||
env:
|
||||
RENOVATE_CONFIG_FILE: "/workspace/infrastructure/renovate/config.js"
|
||||
LOG_LEVEL: "debug"
|
||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.HUB_TOKEN }}
|
16
config.js
Normal file
16
config.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
module.exports = {
|
||||
endpoint: "https://git.froth.zone/api/v1/",
|
||||
onboardingConfig: {
|
||||
extends: [
|
||||
"config:base",
|
||||
":pinSkipCi",
|
||||
":enableVulnerabilityAlerts",
|
||||
":semanticCommits",
|
||||
],
|
||||
"automerge": true
|
||||
},
|
||||
postUpdateOptions: ["gomodTidy", "pnpmDedupe"],
|
||||
platform: "gitea",
|
||||
autodiscover: true,
|
||||
optimizeForDisabled: true,
|
||||
};
|
Loading…
Reference in a new issue