Skip to content

Commit c9ac068

Browse files
committed
chore(ci): add renovate config
1 parent ef3adb8 commit c9ac068

File tree

3 files changed

+15
-22
lines changed

3 files changed

+15
-22
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/docker.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ on:
33
push:
44
branches:
55
- "main"
6-
pull_request:
7-
branches:
8-
- "main"
6+
- "renovate/*"
97

108
jobs:
119
build:
@@ -37,7 +35,7 @@ jobs:
3735
uses: docker/build-push-action@v2
3836
with:
3937
context: ${{ matrix.context }}
40-
push: ${{ github.event_name != 'pull_request' }}
38+
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
4139
platforms: linux/amd64
4240
file: ${{ matrix.context }}/Dockerfile
4341
tags: |

renovate.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": ["config:base"],
3+
"lockFileMaintenance": { "enabled": true, "automerge": true },
4+
"prHourlyLimit": 2,
5+
"labels": ["dependencies"],
6+
"packageRules": [
7+
{
8+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
9+
"automerge": true,
10+
"automergeType": "branch"
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)