aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/renovate.json512
-rw-r--r--.github/workflows/pull_request.yml2
2 files changed, 12 insertions, 2 deletions
diff --git a/.github/renovate.json5 b/.github/renovate.json5
index 71995b37..ecbc5a60 100644
--- a/.github/renovate.json5
+++ b/.github/renovate.json5
@@ -68,6 +68,16 @@
"datasourceTemplate": "maven",
"depNameTemplate": "androidx.compose.compiler:compiler",
"registryUrlTemplate": "https://maven.google.com",
- }
+ },
+ {
+ "fileMatch": [
+ "build-logic/src/main/kotlin/app/passwordstore/gradle/SpotlessPlugin.kt"
+ ],
+ "matchStrings": [
+ "KTFMT_VERSION = \"(?<currentValue>.*)\""
+ ],
+ "datasourceTemplate": "maven",
+ "depNameTemplate": "com.facebook:ktfmt"
+ }
]
}
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index f5879ab7..242065f6 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -20,7 +20,7 @@ jobs:
- name: Check codestyle
shell: bash
- run: ./gradlew ktfmtCheck
+ run: ./gradlew spotlessCheck
- name: Upload Kotlin build report
if: "${{ always() }}"