Compare commits

..

1 Commits

Author SHA1 Message Date
Renovate Bot
66706e2019 Add renovate.json
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-12 12:35:20 +00:00
4 changed files with 10 additions and 35 deletions

View File

@@ -22,9 +22,6 @@ steps:
- name: renovate - name: renovate
image: renovate/renovate:33.2.0 image: renovate/renovate:33.2.0
volumes:
- name: tmp
path: /tmp
# https://github.com/renovatebot/renovate/discussions/15049 # https://github.com/renovatebot/renovate/discussions/15049
commands: commands:
- unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL - unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
@@ -33,10 +30,3 @@ steps:
environment: environment:
RENOVATE_TOKEN: RENOVATE_TOKEN:
from_secret: RENOVATE_TOKEN from_secret: RENOVATE_TOKEN
GITHUB_COM_TOKEN:
from_secret: GITHUB_TOKEN
volumes:
- name: tmp
host:
path: /tmp

View File

@@ -1,20 +0,0 @@
name: renovate
on:
schedule:
- cron: '0 */12 * * *'
push:
branches:
- master
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:38.110.1
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/renovate/renovate-config/config.js" # replace it with your config.js path
LOG_LEVEL: "info"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token

View File

@@ -6,12 +6,11 @@ module.exports = {
autodiscover: true, autodiscover: true,
onboardingConfig: { onboardingConfig: {
$schema: 'https://docs.renovatebot.com/renovate-schema.json', $schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: ["config:recommended", ":rebaseStalePrs"] extends: ['config:base']
}, },
branchPrefix: 'renovate-',
optimizeForDisabled: true, optimizeForDisabled: true,
persistRepoData: true, persistRepoData: true,
// repositories: [ repositories: [
// "cloonar/wohnservice-wien-typo3" "cloonar/wohnservice-wien-typo3"
// ] ]
} }

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}