We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 118adbe commit 319b899Copy full SHA for 319b899
.github/workflows/lint.yml
@@ -1,5 +1,9 @@
1
name: lint
2
-on: [pull_request, push]
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - main
7
8
permissions:
9
contents: read
.github/workflows/test.yml
name: test
renovate.json
@@ -1,6 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "automergeStrategy": "squash",
"extends": [
"config:base"
+ ],
+ "packageRules": [
+ {
+ "automerge": true,
10
+ "description": "Automerge non-major updates",
11
+ "matchUpdateTypes": [
12
+ "minor",
13
+ "patch"
14
+ ]
15
+ }
16
]
-}
17
+}
0 commit comments