Compare commits

...

4 Commits

Author SHA1 Message Date
09f428c62a Ignore those errors
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-03 11:21:37 +02:00
524aea5e77 More docs 2021-06-03 11:02:36 +02:00
ae73d459e6 Use usual conventions 2021-06-03 11:02:02 +02:00
02f6719599 Add missing config 2021-06-03 11:01:19 +02:00
3 changed files with 15 additions and 3 deletions

View File

@ -5,3 +5,10 @@
A robot who upgrades our configurations.
See [config.js](./config.js.tmpl) for the configured repositories.
## Deploy
```
$ docker stack rm renovate_bot
$ docker stack deploy -c compose.yml renovate_bot
```

View File

@ -1,3 +1,4 @@
---
version: "3.8"
services:
app:
@ -31,13 +32,16 @@ services:
condition: none
configs:
config_js:
name: config_js_v1
name: renovate_config_js_v1
file: config.js.tmpl
template_driver: golang
entrypoint:
name: renovate_entrypoint_v1
file: entrypoint.sh
secrets:
api_token:
name: api_token_v1
name: renovate_api_token_v1
external: true
github_token:
name: github_token_v1
name: renovate_github_token_v1
external: true

View File

@ -7,6 +7,7 @@ module.exports = {
"docker-compose": {
fileMatch: "(^|/)compose[^/]*\.ya?ml$",
},
"suppressNotifications": ["artifactErrors"],
"requiredStatusChecks": null,
"packageRules": [
{