Merge branch 'renovatebot' into renovate/configure
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
commit
5e3d52b773
2 changed files with 45 additions and 6 deletions
35
.drone.yml
35
.drone.yml
|
|
@ -1,11 +1,34 @@
|
||||||
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: renovate
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- cron
|
||||||
|
- push
|
||||||
|
- custom
|
||||||
|
|
||||||
|
environment:
|
||||||
|
LOG_LEVEL: debug
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: greeting
|
- name: renovate - validate config
|
||||||
image: alpine
|
image: renovate/renovate:39.256
|
||||||
|
# https://github.com/renovatebot/renovate/discussions/15049
|
||||||
commands:
|
commands:
|
||||||
- echo Hello
|
- unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
||||||
- echo beautiful
|
- renovate-config-validator
|
||||||
- echo World
|
|
||||||
|
- name: renovate
|
||||||
|
image: renovate/renovate:39.256
|
||||||
|
# https://github.com/renovatebot/renovate/discussions/15049
|
||||||
|
commands:
|
||||||
|
- unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
||||||
|
- renovate
|
||||||
|
|
||||||
|
environment:
|
||||||
|
RENOVATE_TOKEN:
|
||||||
|
from_secret: RENOVATE_TOKEN
|
||||||
|
#GITHUB_COM_TOKEN:
|
||||||
|
# from_secret: GITHUB_COM_TOKEN
|
||||||
|
|
|
||||||
16
config.js
Normal file
16
config.js
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
module.exports = {
|
||||||
|
endpoint: "https://git.local-it.org/api/v1/",
|
||||||
|
gitAuthor: 'Renovate Bot <renovate@local-it.org>',
|
||||||
|
username: 'renovate',
|
||||||
|
platform: "gitea",
|
||||||
|
onboarding: true,
|
||||||
|
autodiscover: true,
|
||||||
|
persistRepoData: true,
|
||||||
|
optimizeForDisabled: true,
|
||||||
|
assignees: [],
|
||||||
|
labels: ["renovate", "dependencies", "automated"],
|
||||||
|
onboardingConfig: {
|
||||||
|
extends: ["config:recommended"],
|
||||||
|
},
|
||||||
|
repositories: ["local-it/mitgliederverwaltung"]
|
||||||
|
};
|
||||||
Loading…
Add table
Add a link
Reference in a new issue