Add root config files to trigger build workflows (#2875)
* Add root js config files to trigger build workflows * Update to match all files in root except md and txt ones
This commit is contained in:
parent
3b857345bb
commit
e12d28d14a
|
@ -9,7 +9,9 @@ on:
|
|||
paths:
|
||||
- 'apps/browser/**'
|
||||
- 'libs/**'
|
||||
- '.github/workflows/build-browser.yml'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
@ -18,6 +20,9 @@ on:
|
|||
paths:
|
||||
- 'apps/browser/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-browser.yml'
|
||||
workflow_dispatch:
|
||||
inputs: {}
|
||||
|
|
|
@ -9,6 +9,9 @@ on:
|
|||
paths:
|
||||
- 'apps/cli/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-cli.yml'
|
||||
push:
|
||||
branches:
|
||||
|
@ -18,6 +21,9 @@ on:
|
|||
paths:
|
||||
- 'apps/cli/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-cli.yml'
|
||||
workflow_dispatch:
|
||||
inputs: {}
|
||||
|
|
|
@ -8,7 +8,9 @@ on:
|
|||
- 'gh-pages'
|
||||
paths:
|
||||
- 'apps/desktop/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-desktop.yml'
|
||||
push:
|
||||
branches:
|
||||
|
@ -18,6 +20,9 @@ on:
|
|||
paths:
|
||||
- 'apps/desktop/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-desktop.yml'
|
||||
workflow_dispatch:
|
||||
inputs: {}
|
||||
|
|
|
@ -9,6 +9,9 @@ on:
|
|||
paths:
|
||||
- 'apps/web/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-web.yml'
|
||||
push:
|
||||
branches:
|
||||
|
@ -18,6 +21,9 @@ on:
|
|||
paths:
|
||||
- 'apps/web/**'
|
||||
- 'libs/**'
|
||||
- '*'
|
||||
- '!*.md'
|
||||
- '!*.txt'
|
||||
- '.github/workflows/build-web.yml'
|
||||
workflow_dispatch:
|
||||
inputs: {}
|
||||
|
|
Loading…
Reference in New Issue