Skip to content

Commit c778787

Browse files
committed
Merge branch 'fix-kotlin-formatting-paths-in-ci'
2 parents c74e5b2 + 5930c84 commit c778787

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/android-kotlin-format-check.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
name: Android - Check kotlin formatting
33
on:
44
pull_request:
5-
paths: [.github/workflows/android-kotlin-format-check.yml, android/**/*.kt]
5+
paths:
6+
- .github/workflows/android-kotlin-format-check.yml
7+
- android/gradle/libs.versions.toml
8+
- android/**/*.kt
9+
- android/**/*.kts
610
workflow_dispatch:
711
inputs:
812
override_container_image:

android/buildSrc/settings.gradle.kts

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
rootProject.name = "buildSrc"
22

33
dependencyResolutionManagement {
4-
versionCatalogs {
5-
create("libs") {
6-
from(files("../gradle/libs.versions.toml"))
7-
}
8-
}
4+
versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } }
95
}

0 commit comments

Comments
 (0)