Compare commits

..

18 Commits

Author SHA1 Message Date
577a0cc009 update renovate
All checks were successful
renovate / renovate (push) Successful in 11m37s
2024-10-04 21:44:29 +02:00
aa56dab945 migrate config 2024-10-04 21:41:43 +02:00
205fc8a52e change to run every 12 hours
All checks were successful
renovate / renovate (push) Successful in 41s
2024-10-03 21:49:44 +02:00
a5b0bccd8e change log level
All checks were successful
renovate / renovate (push) Successful in 55s
2024-06-04 00:19:51 +02:00
8d7d1fae52 change cron to hourly
All checks were successful
renovate / renovate (push) Successful in 47s
2024-06-04 00:18:35 +02:00
a9467b7764 try cron
Some checks are pending
renovate / renovate (push) Waiting to run
2024-06-04 00:18:07 +02:00
2672877197 try cron
All checks were successful
renovate / renovate (push) Successful in 1m1s
2024-06-04 00:16:25 +02:00
c1bc45e2f2 change cron
All checks were successful
renovate / renovate (push) Successful in 53s
2024-01-18 21:15:14 +01:00
2f18f37189 change cron syntax
All checks were successful
renovate / renovate (push) Successful in 49s
2023-12-08 12:48:15 +01:00
2527419bb9 try
All checks were successful
renovate / renovate (push) Successful in 46s
2023-12-08 12:26:29 +01:00
49be44fea3 run workflow
Some checks failed
renovate / renovate (push) Failing after 38s
2023-12-08 11:55:49 +01:00
e8d0708a6e run workflow 2023-12-08 11:55:37 +01:00
853864ebed add workflow 2023-12-08 01:03:57 +01:00
dab11355f5 cahnge to autodiscover
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
2023-02-12 21:55:30 +01:00
939c8b293d try without autodiscover
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-12 21:53:10 +01:00
fb524dd4d5 add github token
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-12 20:50:48 +01:00
1dca9c55bb change branch prefix
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
2023-02-12 19:52:12 +01:00
aadff300c9 add tmp directory
Some checks failed
continuous-integration/drone/push Build encountered an error
continuous-integration/drone Build is passing
2023-02-12 19:41:15 +01:00
4 changed files with 35 additions and 10 deletions

View File

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

View File

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

View File

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