Skip to content

Commit 8fab0c6

Browse files
committed
Add library.properties to path filter of "Compile Examples" workflow
For the sake of efficiency, the "Compile Examples" GitHub Actions workflow is configured to only run when relevant files are modified. Changes to the `library.properties` metadata file can affect the compilation of the library, so the workflow must be triggered any time that file is modified. That was not done with the previous paths filter configuration.
1 parent 967e826 commit 8fab0c6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/compile-examples.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ on:
44
pull_request:
55
paths:
66
- ".github/workflows/compile-examples.yml"
7+
- "library.properties"
78
- "examples/**"
89
- "src/**"
910
push:
1011
paths:
1112
- ".github/workflows/compile-examples.yml"
13+
- "library.properties"
1214
- "examples/**"
1315
- "src/**"
1416
# Scheduled trigger checks for breakage caused by changes to external resources (libraries, platforms)

0 commit comments

Comments
 (0)