Skip to content

Commit 1ea3244

Browse files
authored
Renovate setup (#55)
* rm over-specific name (will be made specific by the gradle_task.yml action * add renovate config
1 parent 7fdd7b4 commit 1ea3244

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

.github/renovate.json5

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
$schema: "https://docs.renovatebot.com/renovate-schema.json",
3+
extends: [
4+
"config:base"
5+
],
6+
enabled: true,
7+
enabledManagers: [
8+
"npm",
9+
"gradle",
10+
"gradle-wrapper",
11+
"github-actions"
12+
],
13+
14+
// will auto-merge directly, without a PR, if tests pass - else, makes a PR
15+
automergeType: "branch",
16+
// platformAutomerge: true,
17+
18+
packageRules: [
19+
{
20+
// automerge all but major releases
21+
"matchUpdateTypes": [
22+
"minor",
23+
"patch",
24+
"pin",
25+
"digest"
26+
],
27+
"automerge": true
28+
}
29+
],
30+
schedule: [
31+
"after 10am on the first day of the month",
32+
],
33+
stabilityDays: 14,
34+
"suppressNotifications": [
35+
// "artifactErrors",
36+
// "branchAutomergeFailure",
37+
// "configErrorIssue",
38+
// "deprecationWarningIssues",
39+
// "lockFileErrors",
40+
// "onboardingClose",
41+
// "prEditedNotification",
42+
// "prIgnoreNotification",
43+
],
44+
prCreation: "status-success",
45+
}

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ permissions:
1717
jobs:
1818

1919
gradle-check:
20-
name: "./gradlew ${{ matrix.target }} @ ${{ matrix.os }}"
2120
strategy:
2221
matrix:
2322
os: [ ubuntu-latest, macos-11, windows-latest ]

0 commit comments

Comments
 (0)