Skip to content

Commit 1a504d4

Browse files
author
Adrian Chang
committed
Monorepo
1 parent d121de2 commit 1a504d4

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/python-package-develop.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,20 @@ permissions:
1414
id-token: write
1515

1616
jobs:
17+
path-filter:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: dorny/paths-filter@v3
21+
id: filter
22+
with:
23+
filters: |
24+
labelbox:
25+
- 'libs/labelbox/**'
26+
- name: Stop if no changes
27+
if: steps.filter.outputs.labelbox != 'true'
28+
run: exit 1
1729
build:
30+
needs: ['path-filter']
1831
strategy:
1932
fail-fast: false
2033
matrix:

libs/lbox-example/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "lbox-example"
33
version = "0.1.0"
4-
description = "An example module which can be used to develop other module for labelbox-python"
4+
description = "An example module which can be used to develop other modules under the lbox namespace"
55
authors = [
66
{ name = "Labelbox", email = "engineering@labelbox.com" }
77
]

0 commit comments

Comments
 (0)