Create renovate.json (#451)
* Create renovate.json * Update renovate.yml
This commit is contained in:
parent
612a9d51cd
commit
3721589ee1
1
.github/workflows/renovate.yml
vendored
1
.github/workflows/renovate.yml
vendored
|
@ -28,7 +28,6 @@ jobs:
|
||||||
uses: renovatebot/github-action@v32.118.0
|
uses: renovatebot/github-action@v32.118.0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
configurationFile: renovate.js
|
|
||||||
env:
|
env:
|
||||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
30
renovate.json
Normal file
30
renovate.json
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"config:base"
|
||||||
|
],
|
||||||
|
"gitIgnoredAuthors": [
|
||||||
|
"githubaction@githubaction.com"
|
||||||
|
],
|
||||||
|
"dependencyDashboard": true,
|
||||||
|
"enabledManagers": ["docker-compose", "dockerfile"],
|
||||||
|
"hostRules": [
|
||||||
|
{
|
||||||
|
"matchHost": "index.docker.io",
|
||||||
|
"hostType": "docker",
|
||||||
|
"username": "{{ env.DOCKERHUB_USERNAME }}",
|
||||||
|
"password": "{{ env.DOCKERHUB_TOKEN }}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matchHost": "docker.io",
|
||||||
|
"concurrentRequestLimit": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"managers": ["docker-compose", "dockerfile"],
|
||||||
|
"packagePatterns": ["^([^\\/]+\\/)?(mysql|mariadb|mongodb|mongo|postgres|redis)(:|$)"],
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user