Skip to content

Commit 319b899

Browse files
committed
Enable auto merge for minor and patch
1 parent 118adbe commit 319b899

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

.github/workflows/lint.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: lint
2-
on: [pull_request, push]
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
37

48
permissions:
59
contents: read

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: test
2-
on: [pull_request, push]
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
37

48
permissions:
59
contents: read

renovate.json

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"automergeStrategy": "squash",
34
"extends": [
45
"config:base"
6+
],
7+
"packageRules": [
8+
{
9+
"automerge": true,
10+
"description": "Automerge non-major updates",
11+
"matchUpdateTypes": [
12+
"minor",
13+
"patch"
14+
]
15+
}
516
]
6-
}
17+
}

0 commit comments

Comments
 (0)