Compare commits
4 Commits
e35cd60222
...
09f428c62a
Author | SHA1 | Date | |
---|---|---|---|
09f428c62a
|
|||
524aea5e77
|
|||
ae73d459e6
|
|||
02f6719599
|
@ -5,3 +5,10 @@
|
|||||||
A robot who upgrades our configurations.
|
A robot who upgrades our configurations.
|
||||||
|
|
||||||
See [config.js](./config.js.tmpl) for the configured repositories.
|
See [config.js](./config.js.tmpl) for the configured repositories.
|
||||||
|
|
||||||
|
## Deploy
|
||||||
|
|
||||||
|
```
|
||||||
|
$ docker stack rm renovate_bot
|
||||||
|
$ docker stack deploy -c compose.yml renovate_bot
|
||||||
|
```
|
||||||
|
10
compose.yml
10
compose.yml
@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
version: "3.8"
|
version: "3.8"
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
@ -31,13 +32,16 @@ services:
|
|||||||
condition: none
|
condition: none
|
||||||
configs:
|
configs:
|
||||||
config_js:
|
config_js:
|
||||||
name: config_js_v1
|
name: renovate_config_js_v1
|
||||||
file: config.js.tmpl
|
file: config.js.tmpl
|
||||||
template_driver: golang
|
template_driver: golang
|
||||||
|
entrypoint:
|
||||||
|
name: renovate_entrypoint_v1
|
||||||
|
file: entrypoint.sh
|
||||||
secrets:
|
secrets:
|
||||||
api_token:
|
api_token:
|
||||||
name: api_token_v1
|
name: renovate_api_token_v1
|
||||||
external: true
|
external: true
|
||||||
github_token:
|
github_token:
|
||||||
name: github_token_v1
|
name: renovate_github_token_v1
|
||||||
external: true
|
external: true
|
||||||
|
@ -7,6 +7,7 @@ module.exports = {
|
|||||||
"docker-compose": {
|
"docker-compose": {
|
||||||
fileMatch: "(^|/)compose[^/]*\.ya?ml$",
|
fileMatch: "(^|/)compose[^/]*\.ya?ml$",
|
||||||
},
|
},
|
||||||
|
"suppressNotifications": ["artifactErrors"],
|
||||||
"requiredStatusChecks": null,
|
"requiredStatusChecks": null,
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user