Skip build for browser/desktop on importer changes (#5074)
The importers recently got extracted from libs/common. As the import functionality is currently limited to the web and cli, there is no need to build browser and desktop as there won't be any changes. This will free up some runners for other workflows (GH actions) to get faster builds that actually impact browser and desktop. Another benefit is faster feedback on the PR-checks for those two
This commit is contained in:
parent
7e905d518b
commit
a931f5b9bd
|
@ -10,6 +10,7 @@ on:
|
|||
- 'apps/browser/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!libs/importer'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
push:
|
||||
|
@ -21,6 +22,7 @@ on:
|
|||
- 'apps/browser/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!libs/importer'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-browser.yml'
|
||||
|
|
|
@ -10,6 +10,7 @@ on:
|
|||
- 'apps/desktop/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!libs/importer'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-desktop.yml'
|
||||
|
@ -22,6 +23,7 @@ on:
|
|||
- 'apps/desktop/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!libs/importer'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-desktop.yml'
|
||||
|
|
Loading…
Reference in New Issue