From 276f4ce80eeafba7c8a2b036e5436670e3e494a1 Mon Sep 17 00:00:00 2001 From: Adam <897017+aSemy@users.noreply.github.com> Date: Sat, 31 Dec 2022 21:02:24 +0100 Subject: [PATCH 1/2] rm over-specific name (will be made specific by the gradle_task.yml action --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a8419020..2538797b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,6 @@ permissions: jobs: gradle-check: - name: "./gradlew ${{ matrix.target }} @ ${{ matrix.os }}" strategy: matrix: os: [ ubuntu-latest, macos-11, windows-latest ] From ed2a184c31d2a549d1b9afe03911c0212fa7fcad Mon Sep 17 00:00:00 2001 From: Adam <897017+aSemy@users.noreply.github.com> Date: Sat, 31 Dec 2022 21:02:31 +0100 Subject: [PATCH 2/2] add renovate config --- .github/renovate.json5 | 45 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 00000000..fe2c0325 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,45 @@ +{ + $schema: "https://docs.renovatebot.com/renovate-schema.json", + extends: [ + "config:base" + ], + enabled: true, + enabledManagers: [ + "npm", + "gradle", + "gradle-wrapper", + "github-actions" + ], + + // will auto-merge directly, without a PR, if tests pass - else, makes a PR + automergeType: "branch", +// platformAutomerge: true, + + packageRules: [ + { + // automerge all but major releases + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], + "automerge": true + } + ], + schedule: [ + "after 10am on the first day of the month", + ], + stabilityDays: 14, + "suppressNotifications": [ + // "artifactErrors", + // "branchAutomergeFailure", + // "configErrorIssue", + // "deprecationWarningIssues", + // "lockFileErrors", + // "onboardingClose", + // "prEditedNotification", + // "prIgnoreNotification", + ], + prCreation: "status-success", +}