Skip to content

Commit 6a9257c

Browse files
Exclude compose directory from some build checks where it has its own.
1 parent cc1c631 commit 6a9257c

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
# the repo, unless a later match takes precedence.
33
* @square/mobile-foundation-android zach-klippenstein
44

5-
# Compose integration
6-
compose/* @square/mobile-foundation-android @square/ui-systems-android @wardellbagby
5+
# Any files under the compose directory in the repo root should
6+
# be reviewed by UI Systems as well.
7+
/compose/ @square/mobile-foundation-android @square/ui-systems-android @wardellbagby

.github/workflows/compose-kotlin.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
name: Kotlin CI
1+
name: Compose CI
22

33
on:
44
push:
5-
paths:
6-
- 'compose/**'
7-
- '.github/workflows/compose-kotlin.yml'
85
branches: [main]
96
pull_request:
107
paths:

.github/workflows/kotlin.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
paths-ignore:
99
# Don't build the entire app when just changing tutorials, which have their own workflow.
1010
- 'samples/tutorial/**'
11+
# The compose integration has its own workflow.
12+
- 'compose/**'
1113

1214
jobs:
1315
dokka:

lint_docs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ find . \
1717
-not -name 'CHANGELOG.md' \
1818
-not -path './.github/*' \
1919
-not -path $TUTORIALS_DIR/'*' \
20+
-not -path './compose/*' \
2021
| xargs mdl --style $STYLE --ignore-front-matter \
2122

2223
find $TUTORIALS_DIR \

0 commit comments

Comments
 (0)